Skip to content

Commit

Permalink
Bump version: 5.12.0 → 5.13.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink committed May 23, 2024
1 parent 740ba85 commit 77c4661
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- run: |
mkdir -p build
export ENV=ci
export QUALITY_TIME_VERSION=v5.12.0
export QUALITY_TIME_VERSION=v5.13.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
Expand Down
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -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.12.0
QUALITY_TIME_VERSION=v5.13.0-rc.0
2 changes: 1 addition & 1 deletion .github/workflows/application-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/[email protected]
- name: Run application tests
env:
QUALITY_TIME_VERSION: v5.12.0
QUALITY_TIME_VERSION: v5.13.0-rc.0
ENV: ci
run: |
mkdir -p build
Expand Down
2 changes: 1 addition & 1 deletion components/api_server/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "api_server"
version = "5.12.0"
version = "5.13.0-rc.0"
dependencies = [
"bottle==0.12.25",
"cryptography==42.0.7",
Expand Down
2 changes: 1 addition & 1 deletion components/api_server/src/routes/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import bottle


QUALITY_TIME_VERSION = "5.12.0"
QUALITY_TIME_VERSION = "5.13.0-rc.0"


@bottle.get("/api/v3/server", authentication_required=False)
Expand Down
2 changes: 1 addition & 1 deletion components/collector/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "collector"
version = "5.12.0"
version = "5.13.0-rc.0"
dependencies = [
"aiogqlc==5.1.0",
"aiohttp==3.9.5",
Expand Down
2 changes: 1 addition & 1 deletion components/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quality-time-app",
"version": "5.12.0",
"version": "5.13.0-rc.0",
"private": true,
"proxy": "http://127.0.0.1:5001",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion components/notifier/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "notifier"
version = "5.12.0"
version = "5.13.0-rc.0"
dependencies = [
"aiohttp==3.9.5",
"pymsteams==0.2.2"
Expand Down
2 changes: 1 addition & 1 deletion components/renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quality-time-renderer",
"version": "5.12.0",
"version": "5.13.0-rc.0",
"private": true,
"type": "module",
"proxy": "http://localhost:9000",
Expand Down
2 changes: 1 addition & 1 deletion components/shared_code/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "shared_code"
version = "5.12.0"
version = "5.13.0-rc.0"
dependencies = [
"bottle==0.12.25",
"packaging==24.0",
Expand Down
2 changes: 1 addition & 1 deletion docs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "docs"
version = "5.12.0"
version = "5.13.0-rc.0"
dependencies = [
"furo==2023.9.10",
"gitpython==3.1.43",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

<!-- The line "## <square-bracket>Unreleased</square-bracket>" is replaced by the release/release.py script with the new release version and release date. -->

## [Unreleased]
## v5.13.0-rc.0 - 2024-05-23

### Deployment notes

Expand Down
4 changes: 2 additions & 2 deletions release/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "release"
version = "5.12.0"
version = "5.13.0-rc.0"
dependencies = [
"bump-my-version==0.21.1",
"gitpython==3.1.43",
Expand All @@ -13,7 +13,7 @@ dev = [
]

[tool.bumpversion]
current_version = "5.12.0"
current_version = "5.13.0-rc.0"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sonar.organization=ictu
sonar.projectKey=nl.ictu:quality-time
sonar.projectName=Quality-time
sonar.projectVersion=5.12.0
sonar.projectVersion=5.13.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.
Expand Down
2 changes: 1 addition & 1 deletion tests/application_tests/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "application_tests"
version = "5.12.0"
version = "5.13.0-rc.0"
dependencies = [
"axe-selenium-python==2.1.6",
"requests==2.32.2",
Expand Down
2 changes: 1 addition & 1 deletion tests/feature_tests/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "feature_tests"
version = "5.12.0"
version = "5.13.0-rc.0"
dependencies = [
"asserts==0.13.1",
"behave==1.2.6",
Expand Down

0 comments on commit 77c4661

Please sign in to comment.