mirror of
https://github.com/wger-project/wger.git
synced 2026-02-18 00:17:51 +01:00
Bump version to 2.4
This commit is contained in:
2
.github/workflows/docker-base.yml
vendored
2
.github/workflows/docker-base.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/docker-demo.yml
vendored
2
.github/workflows/docker-demo.yml
vendored
@@ -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
|
||||
|
||||
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
@@ -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 }}
|
||||
|
||||
|
||||
@@ -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": "",
|
||||
|
||||
@@ -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"""
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user