chore: increase version of all relevant files
Some checks failed
Run tests & build / Test and build with NodeJS 20 (push) Has been cancelled
E2E Tests / backend-sqlite (push) Has been cancelled
E2E Tests / backend-mariadb (push) Has been cancelled
E2E Tests / backend-postgres (push) Has been cancelled
E2E Tests / Build test build of frontend (push) Has been cancelled
Docker / build-and-push (backend) (push) Has been cancelled
Docker / build-and-push (frontend) (push) Has been cancelled
Deploy HD2 docs to Netlify / Deploys to netlify (push) Has been cancelled
Lint and check format / Lint files and check formatting (push) Has been cancelled
REUSE Compliance Check / reuse (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Static Analysis / Njsscan code scanning (push) Has been cancelled
Static Analysis / CodeQL analysis (push) Has been cancelled
E2E Tests / frontend-cypress (1) (push) Has been cancelled
E2E Tests / frontend-cypress (2) (push) Has been cancelled
E2E Tests / frontend-cypress (3) (push) Has been cancelled

We release Alpha v3 of HedgeDoc 2.0 and need to make sure that all
version are changed accordingly.

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2024-09-18 20:16:01 +02:00
parent ddc5f07faa
commit 81a9058347
6 changed files with 10 additions and 10 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@hedgedoc/backend",
"version": "2.0.0-alpha.2",
"version": "2.0.0-alpha.3",
"description": "Realtime collaborative markdown notes on all platforms.",
"author": "",
"private": true,

View file

@ -1,12 +1,12 @@
services:
backend:
image: ghcr.io/hedgedoc/hedgedoc/backend:2.0.0-alpha.2
image: ghcr.io/hedgedoc/hedgedoc/backend:2.0.0-alpha.3
volumes:
- $PWD/.env:/usr/src/app/backend/.env
- hedgedoc_uploads:/usr/src/app/backend/uploads
frontend:
image: ghcr.io/hedgedoc/hedgedoc/frontend:2.0.0-alpha.2
image: ghcr.io/hedgedoc/hedgedoc/frontend:2.0.0-alpha.3
environment:
HD_BASE_URL: "${HD_BASE_URL}"
HD_INTERNAL_API_URL: http://backend:3000

View file

@ -25,7 +25,7 @@ in your `docker-compose.yml`:
??? abstract "docker-compose.yml"
```yaml
backend:
image: ghcr.io/hedgedoc/hedgedoc/backend:2.0.0-alpha.2
image: ghcr.io/hedgedoc/hedgedoc/backend:2.0.0-alpha.3
volumes:
- $PWD/.env:/usr/src/app/backend/.env
- hedgedoc_uploads:/usr/src/app/backend/uploads
@ -37,7 +37,7 @@ in your `docker-compose.yml`:
traefik.http.services.hedgedoc_2_backend.loadbalancer.server.port: "3000"
traefik.http.services.hedgedoc_2_backend.loadbalancer.server.scheme: "http"
frontend:
image: ghcr.io/hedgedoc/hedgedoc/frontend:2.0.0-alpha.2
image: ghcr.io/hedgedoc/hedgedoc/frontend:2.0.0-alpha.3
environment:
HD_BASE_URL: "${HD_BASE_URL}"
labels:
@ -79,14 +79,14 @@ you need to add the `ports` entry for both `backend` and `frontend` as following
??? abstract "docker-compose.yml"
```yaml
backend:
image: ghcr.io/hedgedoc/hedgedoc/backend:2.0.0-alpha.2
image: ghcr.io/hedgedoc/hedgedoc/backend:2.0.0-alpha.3
volumes:
- $PWD/.env:/usr/src/app/backend/.env
- hedgedoc_uploads:/usr/src/app/backend/uploads
ports:
- "3000:3000"
frontend:
image: ghcr.io/hedgedoc/hedgedoc/frontend:2.0.0-alpha.2
image: ghcr.io/hedgedoc/hedgedoc/frontend:2.0.0-alpha.3
environment:
HD_BASE_URL: "${HD_BASE_URL}"
ports:

View file

@ -1,6 +1,6 @@
{
"name": "@hedgedoc/docs",
"version": "2.0.0-alpha.2",
"version": "2.0.0-alpha.3",
"license": "AGPL-3.0",
"scripts": {
"lint": "markdownlint-cli2 content/**/*.md",

View file

@ -1,6 +1,6 @@
{
"name": "@hedgedoc/frontend",
"version": "2.0.0-alpha.2",
"version": "2.0.0-alpha.3",
"private": true,
"license": "AGPL-3.0",
"scripts": {

View file

@ -1,6 +1,6 @@
{
"name": "hedgedoc",
"version": "2.0.0-alpha.2",
"version": "2.0.0-alpha.3",
"private": true,
"workspaces": [
"backend",