Skip to content

Commit

Permalink
Bump version: 4.7.0-rc.4 → 4.7.0-rc.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink committed Dec 23, 2022
1 parent f6a4982 commit 0b5940b
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- run: |
mkdir -p build
export ENV=ci
export QUALITY_TIME_VERSION=v4.7.0-rc.4
export QUALITY_TIME_VERSION=v4.7.0-rc.5
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=v4.7.0-rc.4
QUALITY_TIME_VERSION=v4.7.0-rc.5
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/checkout@v3.2.0
- name: Run application tests
env:
QUALITY_TIME_VERSION: v4.7.0-rc.4
QUALITY_TIME_VERSION: v4.7.0-rc.5
ENV: ci
run: |
mkdir -p build
Expand Down
2 changes: 1 addition & 1 deletion components/external_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 = "4.7.0-rc.4"
QUALITY_TIME_VERSION = "4.7.0-rc.5"


@bottle.get("/api/v3/server", authentication_required=False)
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": "4.7.0-rc.4",
"version": "4.7.0-rc.5",
"private": true,
"proxy": "http://localhost:5001",
"dependencies": {
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": "4.7.0-rc.4",
"version": "4.7.0-rc.5",
"private": true,
"type": "module",
"proxy": "http://localhost:9000",
Expand Down
2 changes: 1 addition & 1 deletion components/shared_data_model/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "shared_data_model"
version = "4.7.0-rc.4"
version = "4.7.0-rc.5"
authors = [
{ name="Quality-time team", email="quality-time@ictu.nl" },
]
Expand Down
2 changes: 1 addition & 1 deletion components/shared_server_code/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "shared_server_code"
version = "4.7.0-rc.4"
version = "4.7.0-rc.5"
authors = [
{ name="Quality-time team", email="quality-time@ictu.nl" },
]
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]
## v4.7.0-rc.5 - 2022-12-23

### Deployment notes

Expand Down
2 changes: 1 addition & 1 deletion release/.bumpversion-rc.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-rc\.(?P<rc>\d+))?
serialize =
{major}.{minor}.{patch}-rc.{rc}
{major}.{minor}.{patch}
current_version = 4.7.0-rc.4
current_version = 4.7.0-rc.5
commit = true
tag = true

Expand Down
2 changes: 1 addition & 1 deletion release/.bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-rc\.(?P<rc>\d+))?
serialize =
{major}.{minor}.{patch}-rc.{rc}
{major}.{minor}.{patch}
current_version = 4.7.0-rc.4
current_version = 4.7.0-rc.5
commit = true
tag = true

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=4.7.0-rc.4
sonar.projectVersion=4.7.0-rc.5

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
Expand Down

0 comments on commit 0b5940b

Please sign in to comment.