Skip to content

Commit 43ea6f6

Browse files
committed
Bump version to 2.4
1 parent 2cec9a6 commit 43ea6f6

5 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/docker-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
push: true
4040
file: extras/docker/base/Dockerfile
4141
platforms: linux/amd64,linux/arm64,linux/arm/v7
42-
tags: ${{ vars.REGISTRY_REPO }}/base:latest,${{ vars.REGISTRY_REPO }}/base:2.3-dev
42+
tags: ${{ vars.REGISTRY_REPO }}/base:latest,${{ vars.REGISTRY_REPO }}/base:2.4-dev

.github/workflows/docker-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
push: true
4242
file: extras/docker/demo/Dockerfile
4343
platforms: linux/amd64,linux/arm64
44-
tags: ${{ vars.REGISTRY_REPO }}/demo:latest,${{ vars.REGISTRY_REPO }}/demo:2.3-dev
44+
tags: ${{ vars.REGISTRY_REPO }}/demo:latest,${{ vars.REGISTRY_REPO }}/demo:2.4-dev

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# https://github.com/docker/metadata-action
3939
tags: |
4040
type=raw,value=latest
41-
type=raw,value=2.3-dev
41+
type=raw,value=2.4-dev
4242
images: |
4343
${{ env.REGISTRY_IMAGE }}
4444
@@ -121,7 +121,7 @@ jobs:
121121
with:
122122
tags: |
123123
type=raw,value=latest
124-
type=raw,value=2.3-dev
124+
type=raw,value=2.4-dev
125125
images: |
126126
${{ env.REGISTRY_IMAGE }}
127127

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wger",
3-
"version": "2.3.dev1",
3+
"version": "2.4.alpha1",
44
"description": "Self hosted FLOSS fitness/workout and weight tracker",
55
"repository": "github:wger-project/wger",
66
"author": "",

wger/version.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,20 @@
2121

2222
logger = logging.getLogger(__name__)
2323

24+
# For more details and possibilities, see:
25+
# https://packaging.python.org/en/latest/specifications/version-specifiers/
26+
2427
MIN_APP_VERSION = Version('1.8.0')
2528
"""
2629
Minimum version of the mobile app required to access this server.
2730
2831
Always use versions in the x.y.z format, without any suffixes like "beta1" or such.
2932
"""
3033

31-
MIN_SERVER_VERSION = Version(f'2.3.0beta2')
34+
MIN_SERVER_VERSION = Version('2.3.0-beta2')
3235
"""Minimum version of the server required to run sync commands on this server"""
3336

34-
VERSION = Version(f'2.3.0beta2')
37+
VERSION = Version('2.4.0-alpha1')
3538
"""Current version of the app"""
3639

3740

0 commit comments

Comments
 (0)