Bump version to 2.4

This commit is contained in:
Roland Geider
2025-04-05 20:03:17 +02:00
parent 2cec9a615e
commit 43ea6f6153
5 changed files with 10 additions and 7 deletions

View File

@@ -39,4 +39,4 @@ jobs:
push: true
file: extras/docker/base/Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: ${{ vars.REGISTRY_REPO }}/base:latest,${{ vars.REGISTRY_REPO }}/base:2.3-dev
tags: ${{ vars.REGISTRY_REPO }}/base:latest,${{ vars.REGISTRY_REPO }}/base:2.4-dev

View File

@@ -41,4 +41,4 @@ jobs:
push: true
file: extras/docker/demo/Dockerfile
platforms: linux/amd64,linux/arm64
tags: ${{ vars.REGISTRY_REPO }}/demo:latest,${{ vars.REGISTRY_REPO }}/demo:2.3-dev
tags: ${{ vars.REGISTRY_REPO }}/demo:latest,${{ vars.REGISTRY_REPO }}/demo:2.4-dev

View File

@@ -38,7 +38,7 @@ jobs:
# https://github.com/docker/metadata-action
tags: |
type=raw,value=latest
type=raw,value=2.3-dev
type=raw,value=2.4-dev
images: |
${{ env.REGISTRY_IMAGE }}
@@ -121,7 +121,7 @@ jobs:
with:
tags: |
type=raw,value=latest
type=raw,value=2.3-dev
type=raw,value=2.4-dev
images: |
${{ env.REGISTRY_IMAGE }}

View File

@@ -1,6 +1,6 @@
{
"name": "wger",
"version": "2.3.dev1",
"version": "2.4.alpha1",
"description": "Self hosted FLOSS fitness/workout and weight tracker",
"repository": "github:wger-project/wger",
"author": "",

View File

@@ -21,6 +21,9 @@ from packaging.version import Version
logger = logging.getLogger(__name__)
# For more details and possibilities, see:
# https://packaging.python.org/en/latest/specifications/version-specifiers/
MIN_APP_VERSION = Version('1.8.0')
"""
Minimum version of the mobile app required to access this server.
@@ -28,10 +31,10 @@ Minimum version of the mobile app required to access this server.
Always use versions in the x.y.z format, without any suffixes like "beta1" or such.
"""
MIN_SERVER_VERSION = Version(f'2.3.0beta2')
MIN_SERVER_VERSION = Version('2.3.0-beta2')
"""Minimum version of the server required to run sync commands on this server"""
VERSION = Version(f'2.3.0beta2')
VERSION = Version('2.4.0-alpha1')
"""Current version of the app"""