diff --git a/docs/content/dev/openapi.yml b/docs/content/dev/openapi.yml index ff39e8aaa..8a1cf0932 100644 --- a/docs/content/dev/openapi.yml +++ b/docs/content/dev/openapi.yml @@ -3,7 +3,7 @@ openapi: 3.0.1 info: title: HedgeDoc description: HedgeDoc is an open source collaborative note editor. Several tasks of HedgeDoc can be automated through this API. - version: 1.9.9 + version: 1.10.0 contact: name: HedgeDoc on GitHub url: https://github.com/hedgedoc/hedgedoc diff --git a/docs/content/setup/docker.md b/docs/content/setup/docker.md index 3a0c314cf..1c628412c 100644 --- a/docs/content/setup/docker.md +++ b/docs/content/setup/docker.md @@ -28,7 +28,7 @@ services: restart: always app: # Make sure to use the latest release from https://hedgedoc.org/latest-release - image: quay.io/hedgedoc/hedgedoc:1.9.9 + image: quay.io/hedgedoc/hedgedoc:1.10.0 environment: - CMD_DB_URL=postgres://hedgedoc:password@database:5432/hedgedoc - CMD_DOMAIN=localhost diff --git a/docs/content/setup/manual-setup.md b/docs/content/setup/manual-setup.md index 54fb61420..1ef804d86 100644 --- a/docs/content/setup/manual-setup.md +++ b/docs/content/setup/manual-setup.md @@ -1,7 +1,7 @@ # Manual Installation !!! info "Requirements on your server" - - Node.js 16 or later + - Node.js 18 or later We recommend to run HedgeDoc with the latest LTS release of Node.js. - Database (PostgreSQL, MySQL, MariaDB, SQLite) The database must use charset `utf8`. This is typically the default in PostgreSQL and SQLite. @@ -10,7 +10,7 @@ This can break if symbols with more bytes are used. You can use `alter database character set utf8mb4 COLLATE utf8mb4_unicode_ci` to be on the safe side. - NPM (and its dependencies, [node-gyp](https://github.com/nodejs/node-gyp#installation)) - - [Yarn 3](https://yarnpkg.com/): Running `corepack enable` once should be sufficient, Node.js will then + - [Yarn 4](https://yarnpkg.com/): Running `corepack enable` once should be sufficient, Node.js will then automatically use the correct version of Yarn. If `corepack` is not available, try `npm i -g corepack` first. See [the official docs](https://yarnpkg.com/getting-started/install) for more information and other options. - Bash (for the setup script) @@ -19,7 +19,7 @@ 1. Check if you meet the [requirements at the top of this document](#manual-installation). 2. Download the [latest release](https://hedgedoc.org/latest-release/) and extract it. - Alternatively, you can use Git to clone the repository and checkout a release, e.g. with `git clone -b 1.9.9 https://github.com/hedgedoc/hedgedoc.git`. + Alternatively, you can use Git to clone the repository and checkout a release, e.g. with `git clone -b 1.10.0 https://github.com/hedgedoc/hedgedoc.git`. 3. Enter the directory and execute `bin/setup`, which will install the dependencies and create example configs. 4. Configure HedgeDoc: To get started, you can use this minimal `config.json`: ```json diff --git a/package.json b/package.json index 1a55cdb29..0747ffd44 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "HedgeDoc", - "version": "1.9.9", + "version": "1.10.0", "description": "The best platform to write and share markdown.", "main": "app.js", "license": "AGPL-3.0",