From 0dbb2395a6683b9b5004f6686ccfb34b936eb8e2 Mon Sep 17 00:00:00 2001 From: Frank Niessink Date: Wed, 27 Sep 2023 15:07:41 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=205.1.0=20=E2=86=92=205.2.0-rc.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 2 +- .env | 2 +- .github/workflows/application-tests.yml | 2 +- components/api_server/pyproject.toml | 2 +- components/api_server/src/routes/server.py | 2 +- components/collector/pyproject.toml | 2 +- components/frontend/package.json | 2 +- components/notifier/pyproject.toml | 2 +- components/renderer/package.json | 2 +- components/shared_code/pyproject.toml | 2 +- docs/pyproject.toml | 2 +- docs/src/changelog.md | 2 +- release/.bumpversion-rc.cfg | 2 +- release/.bumpversion.cfg | 2 +- release/pyproject.toml | 2 +- sonar-project.properties | 2 +- tests/application_tests/pyproject.toml | 2 +- tests/feature_tests/pyproject.toml | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7f90733501..77fa22aa98 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -73,7 +73,7 @@ jobs: - run: | mkdir -p build export ENV=ci - export QUALITY_TIME_VERSION=v5.1.0 + export QUALITY_TIME_VERSION=v5.2.0-rc.1 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 50d1e619c7..6fc66ed635 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.1.0 +QUALITY_TIME_VERSION=v5.2.0-rc.1 diff --git a/.github/workflows/application-tests.yml b/.github/workflows/application-tests.yml index 25912f219a..f3b58b549a 100644 --- a/.github/workflows/application-tests.yml +++ b/.github/workflows/application-tests.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v4.1.0 - name: Run application tests env: - QUALITY_TIME_VERSION: v5.1.0 + QUALITY_TIME_VERSION: v5.2.0-rc.1 ENV: ci run: | mkdir -p build diff --git a/components/api_server/pyproject.toml b/components/api_server/pyproject.toml index 1ffdc87f88..370e48115f 100644 --- a/components/api_server/pyproject.toml +++ b/components/api_server/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "api_server" -version = "5.1.0" +version = "5.2.0-rc.1" dependencies = [ "bottle==0.12.25", "cryptography==41.0.4", diff --git a/components/api_server/src/routes/server.py b/components/api_server/src/routes/server.py index 2c2c6562f2..f5110edbc2 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.1.0" +QUALITY_TIME_VERSION = "5.2.0-rc.1" @bottle.get("/api/v3/server", authentication_required=False) diff --git a/components/collector/pyproject.toml b/components/collector/pyproject.toml index 5e782bafad..07afb83b17 100644 --- a/components/collector/pyproject.toml +++ b/components/collector/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "collector" -version = "5.1.0" +version = "5.2.0-rc.1" dependencies = [ "aiogqlc==4.0.0", "aiohttp==3.8.5", diff --git a/components/frontend/package.json b/components/frontend/package.json index f6be09b624..473b827ddb 100644 --- a/components/frontend/package.json +++ b/components/frontend/package.json @@ -1,6 +1,6 @@ { "name": "quality-time-app", - "version": "5.1.0", + "version": "5.2.0-rc.1", "private": true, "proxy": "http://127.0.0.1:5001", "dependencies": { diff --git a/components/notifier/pyproject.toml b/components/notifier/pyproject.toml index 96e16f07c0..2beb7048b1 100644 --- a/components/notifier/pyproject.toml +++ b/components/notifier/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "notifier" -version = "5.1.0" +version = "5.2.0-rc.1" dependencies = [ "aiohttp==3.8.5", "pymsteams==0.2.2" diff --git a/components/renderer/package.json b/components/renderer/package.json index d4447dc792..68af720cba 100644 --- a/components/renderer/package.json +++ b/components/renderer/package.json @@ -1,6 +1,6 @@ { "name": "quality-time-renderer", - "version": "5.1.0", + "version": "5.2.0-rc.1", "private": true, "type": "module", "proxy": "http://localhost:9000", diff --git a/components/shared_code/pyproject.toml b/components/shared_code/pyproject.toml index 30d052c4f3..1e32946022 100644 --- a/components/shared_code/pyproject.toml +++ b/components/shared_code/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "shared_code" -version = "5.1.0" +version = "5.2.0-rc.1" dependencies = [ "bottle==0.12.25", "cryptography==41.0.4", diff --git a/docs/pyproject.toml b/docs/pyproject.toml index f89ca63b18..bc454997b2 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "docs" -version = "5.1.0" +version = "5.2.0-rc.1" dependencies = [ "furo==2023.9.10", "gitpython==3.1.37", diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 838cbf6c6c..fb51d13bf6 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -## [Unreleased] +## v5.2.0-rc.1 - 2023-09-27 ### Fixed diff --git a/release/.bumpversion-rc.cfg b/release/.bumpversion-rc.cfg index 87e7847804..563b61e38e 100644 --- a/release/.bumpversion-rc.cfg +++ b/release/.bumpversion-rc.cfg @@ -3,7 +3,7 @@ parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-rc\.(?P\d+))? serialize = {major}.{minor}.{patch}-rc.{rc} {major}.{minor}.{patch} -current_version = 5.1.0 +current_version = 5.2.0-rc.1 commit = true tag = true diff --git a/release/.bumpversion.cfg b/release/.bumpversion.cfg index 8e2775450b..bbfc3d7eba 100644 --- a/release/.bumpversion.cfg +++ b/release/.bumpversion.cfg @@ -3,7 +3,7 @@ parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-rc\.(?P\d+))? serialize = {major}.{minor}.{patch}-rc.{rc} {major}.{minor}.{patch} -current_version = 5.1.0 +current_version = 5.2.0-rc.1 commit = true tag = true diff --git a/release/pyproject.toml b/release/pyproject.toml index e41c3bad32..3936379a4f 100644 --- a/release/pyproject.toml +++ b/release/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "release" -version = "5.1.0" +version = "5.2.0-rc.1" dependencies = [ "black==23.9.1", # The pre-commit hook (../githooks/pre-commit) calls black "bump2version==1.0.1", diff --git a/sonar-project.properties b/sonar-project.properties index 58b71506ec..7cbe4474d5 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.1.0 +sonar.projectVersion=5.2.0-rc.1 # 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 3225df51ea..5792b9ec4d 100644 --- a/tests/application_tests/pyproject.toml +++ b/tests/application_tests/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "application_tests" -version = "5.1.0" +version = "5.2.0-rc.1" dependencies = [ "axe-selenium-python==2.1.6", "requests==2.31.0", diff --git a/tests/feature_tests/pyproject.toml b/tests/feature_tests/pyproject.toml index 661c12eeac..95ab6132de 100644 --- a/tests/feature_tests/pyproject.toml +++ b/tests/feature_tests/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "feature_tests" -version = "5.1.0" +version = "5.2.0-rc.1" dependencies = [ "asserts==0.12.0", "behave==1.2.6",