diff --git a/.circleci/config.yml b/.circleci/config.yml index 4788a872de..59dd86f6cf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -86,7 +86,7 @@ jobs: mkdir -p build export ENV=ci export PROXY_PORT=8080 - export QUALITY_TIME_VERSION=v5.15.0 + export QUALITY_TIME_VERSION=v5.16.0-rc.0 export COMPOSE_PATH_SEPARATOR=':' export COMPOSE_FILE=docker/docker-compose.yml:docker/docker-compose.ci.yml docker compose build && docker compose up -d diff --git a/.env b/.env index dd401a8c67..39ec7bdfe6 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ COMPOSE_PATH_SEPARATOR=: COMPOSE_FILE=docker/docker-compose.yml:docker/docker-compose.override.yml COMPOSE_PROJECT_NAME=quality-time -QUALITY_TIME_VERSION=v5.15.0 +QUALITY_TIME_VERSION=v5.16.0-rc.0 diff --git a/.github/workflows/application-tests.yml b/.github/workflows/application-tests.yml index 03580c0b12..a5045eeb41 100644 --- a/.github/workflows/application-tests.yml +++ b/.github/workflows/application-tests.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v4.1.7 - name: Run application tests env: - QUALITY_TIME_VERSION: v5.15.0 + QUALITY_TIME_VERSION: v5.16.0-rc.0 ENV: ci PROXY_PORT: 8080 run: | diff --git a/components/api_server/pyproject.toml b/components/api_server/pyproject.toml index ed617152e3..a1d3427549 100644 --- a/components/api_server/pyproject.toml +++ b/components/api_server/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "api-server" -version = "5.15.0" +version = "5.16.0-rc.0" requires-python = ">=3.12" classifiers = [ "Programming Language :: Python :: 3 :: Only", diff --git a/components/api_server/src/routes/server.py b/components/api_server/src/routes/server.py index b5c9775f71..d4140670f0 100644 --- a/components/api_server/src/routes/server.py +++ b/components/api_server/src/routes/server.py @@ -3,7 +3,7 @@ import bottle -QUALITY_TIME_VERSION = "5.15.0" +QUALITY_TIME_VERSION = "5.16.0-rc.0" @bottle.get("/api/v3/server", authentication_required=False) diff --git a/components/collector/pyproject.toml b/components/collector/pyproject.toml index 6eeb72af73..e3726128f1 100644 --- a/components/collector/pyproject.toml +++ b/components/collector/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "collector" -version = "5.15.0" +version = "5.16.0-rc.0" requires-python = ">=3.12" classifiers = [ "Programming Language :: Python :: 3 :: Only", diff --git a/components/frontend/package.json b/components/frontend/package.json index 2fd16aeaf4..126d3cec71 100644 --- a/components/frontend/package.json +++ b/components/frontend/package.json @@ -1,6 +1,6 @@ { "name": "quality-time-app", - "version": "5.15.0", + "version": "5.16.0-rc.0", "private": true, "proxy": "http://127.0.0.1:5001", "dependencies": { diff --git a/components/notifier/pyproject.toml b/components/notifier/pyproject.toml index 9620ea1599..280ebc0e51 100644 --- a/components/notifier/pyproject.toml +++ b/components/notifier/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "notifier" -version = "5.15.0" +version = "5.16.0-rc.0" requires-python = ">=3.12" classifiers = [ "Programming Language :: Python :: 3 :: Only", diff --git a/components/renderer/package.json b/components/renderer/package.json index 448c5d0b7e..0f9401a960 100644 --- a/components/renderer/package.json +++ b/components/renderer/package.json @@ -1,6 +1,6 @@ { "name": "quality-time-renderer", - "version": "5.15.0", + "version": "5.16.0-rc.0", "private": true, "type": "module", "proxy": "http://localhost:9000", diff --git a/components/shared_code/pyproject.toml b/components/shared_code/pyproject.toml index e6d8217b6a..3bfc809b0d 100644 --- a/components/shared_code/pyproject.toml +++ b/components/shared_code/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "shared-code" -version = "5.15.0" +version = "5.16.0-rc.0" requires-python = ">=3.12" classifiers = [ "Programming Language :: Python :: 3 :: Only", diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 916adbcfb6..1ec5cac6f6 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "docs" -version = "5.15.0" +version = "5.16.0-rc.0" requires-python = ">=3.12" classifiers = [ "Programming Language :: Python :: 3 :: Only", diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 53ac70095c..b6d0a61548 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,8 +1,8 @@ --- apiVersion: v2 name: quality-time -version: 5.15.0 -appVersion: "v5.15.0" +version: 5.16.0-rc.0 +appVersion: "v5.16.0-rc.0" description: Helm chart for Quality-time, an automated quality system for software development and maintenance type: application home: https://github.com/ICTU/Quality-time diff --git a/release/pyproject.toml b/release/pyproject.toml index 288a5ea4e4..b591c283ea 100644 --- a/release/pyproject.toml +++ b/release/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "release" -version = "5.15.0" +version = "5.16.0-rc.0" requires-python = ">=3.12" classifiers = [ "Programming Language :: Python :: 3 :: Only", @@ -49,7 +49,7 @@ indent = 4 keep_full_version = true # Don't remove trailing zero's from version specifiers [tool.bumpversion] -current_version = "5.15.0" +current_version = "5.16.0-rc.0" parse = """(?x) (?P0|[1-9]\\d*)\\. (?P0|[1-9]\\d*)\\. diff --git a/sonar-project.properties b/sonar-project.properties index af73ddabcd..86ababe7a7 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.organization=ictu sonar.projectKey=nl.ictu:quality-time sonar.projectName=Quality-time -sonar.projectVersion=5.15.0 +sonar.projectVersion=5.16.0-rc.0 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. # This property is optional if sonar.modules is set. diff --git a/tests/application_tests/pyproject.toml b/tests/application_tests/pyproject.toml index 6854789184..0aa971714a 100644 --- a/tests/application_tests/pyproject.toml +++ b/tests/application_tests/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "application-tests" -version = "5.15.0" +version = "5.16.0-rc.0" requires-python = ">=3.12" classifiers = [ "Programming Language :: Python :: 3 :: Only", diff --git a/tests/feature_tests/pyproject.toml b/tests/feature_tests/pyproject.toml index a7443dbccd..eba81de170 100644 --- a/tests/feature_tests/pyproject.toml +++ b/tests/feature_tests/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "feature-tests" -version = "5.15.0" +version = "5.16.0-rc.0" requires-python = ">=3.12" classifiers = [ "Programming Language :: Python :: 3 :: Only",