Skip to content

Commit

Permalink
Bump version: 5.18.0 → 5.19.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink committed Nov 15, 2024
1 parent 23ea63e commit 031b5cd
Show file tree
Hide file tree
Showing 16 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
mkdir -p build
export ENV=ci
export PROXY_PORT=8080
export QUALITY_TIME_VERSION=v5.18.0
export QUALITY_TIME_VERSION=v5.19.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.18.0
QUALITY_TIME_VERSION=v5.19.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 @@ -16,7 +16,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Run application tests
env:
QUALITY_TIME_VERSION: v5.18.0
QUALITY_TIME_VERSION: v5.19.0-rc.0
ENV: ci
PROXY_PORT: 8080
run: |
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.18.0"
version = "5.19.0-rc.0"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
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.18.0"
QUALITY_TIME_VERSION = "5.19.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.18.0"
version = "5.19.0-rc.0"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
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.18.0",
"version": "5.19.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.18.0"
version = "5.19.0-rc.0"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
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.18.0",
"version": "5.19.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.18.0"
version = "5.19.0-rc.0"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
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.18.0"
version = "5.19.0-rc.0"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: quality-time
version: 5.18.0
appVersion: "v5.18.0"
version: 5.19.0-rc.0
appVersion: "v5.19.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
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.18.0"
version = "5.19.0-rc.0"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
Expand Down Expand Up @@ -45,7 +45,7 @@ indent = 4
keep_full_version = true # Don't remove trailing zero's from version specifiers

[tool.bumpversion]
current_version = "5.18.0"
current_version = "5.19.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.18.0
sonar.projectVersion=5.19.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.18.0"
version = "5.19.0-rc.0"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
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.18.0"
version = "5.19.0-rc.0"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
Expand Down

0 comments on commit 031b5cd

Please sign in to comment.