Bump version to 0.2.0-dev.2
Some checks are pending
CI - Tests et Syntax / lint-and-test (push) Waiting to run

This commit is contained in:
root 2026-08-23 18:34:27 +00:00
parent cdcd4a219f
commit d9730c1558
3 changed files with 5 additions and 5 deletions

View file

@ -1 +1 @@
0.2.0-dev.1
0.2.0-dev.2

View file

@ -25,12 +25,12 @@ services:
memory: 128M
gmao:
image: gmao-college:${GMAO_VERSION:-0.2.0-dev.1}
image: gmao-college:${GMAO_VERSION:-0.2.0-dev.2}
build:
context: .
dockerfile: Dockerfile
args:
GMAO_VERSION: ${GMAO_VERSION:-0.2.0-dev.1}
GMAO_VERSION: ${GMAO_VERSION:-0.2.0-dev.2}
GIT_VERSION: ${GIT_VERSION:-unknown}
container_name: gmao-flask
restart: unless-stopped
@ -51,7 +51,7 @@ services:
- TZ=Europe/Paris
- DB_HOST=mariadb
- DB_PORT=3306
- GMAO_VERSION=${GMAO_VERSION:-0.2.0-dev.1}
- GMAO_VERSION=${GMAO_VERSION:-0.2.0-dev.2}
- GMAO_GUNICORN_FLAGS=--preload
- DOCKER_GMAO_WORKDIR=/app
working_dir: /app

View file

@ -3,7 +3,7 @@ from app_new.version import get_version
def test_project_version_is_available(monkeypatch):
monkeypatch.delenv('GMAO_VERSION', raising=False)
assert get_version() == '0.2.0-dev.1'
assert get_version() == '0.2.0-dev.2'
def test_environment_version_takes_precedence(monkeypatch):