From 021d162513c0cc1fd97a3c5afdffde42de3d59b9 Mon Sep 17 00:00:00 2001 From: Christian Meter Date: Mon, 17 Feb 2020 15:21:12 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.25.0=20=E2=86=92=201.25.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .gitlab-ci.yml | 2 +- api/swagger-ui/dbas_openapi_v3.yaml | 2 +- dbas/views/helper.py | 2 +- package.json | 2 +- pyproject.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 603dffe85..fc1f15234 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.25.0 +current_version = 1.25.1 commit = True tag = True diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e2dd7cbe6..2b9c50dcb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -111,7 +111,7 @@ sonar: image: hhucn/sonar-scanner stage: analysis script: - - sonar-scanner -D sonar.host.url=https://sonarqube.cs.uni-duesseldorf.de -D sonar.login=$SONARQUBE_LOGIN -D sonar.projectKey=$CI_PROJECT_NAME:$CI_COMMIT_REF_NAME -D sonar.projectName=$CI_PROJECT_NAME -D sonar.projectVersion=1.25.0 -D sonar.sources=. -D sonar.python.coverage.reportPath=coverage.xml + - sonar-scanner -D sonar.host.url=https://sonarqube.cs.uni-duesseldorf.de -D sonar.login=$SONARQUBE_LOGIN -D sonar.projectKey=$CI_PROJECT_NAME:$CI_COMMIT_REF_NAME -D sonar.projectName=$CI_PROJECT_NAME -D sonar.projectVersion=1.25.1 -D sonar.sources=. -D sonar.python.coverage.reportPath=coverage.xml only: - development allow_failure: true diff --git a/api/swagger-ui/dbas_openapi_v3.yaml b/api/swagger-ui/dbas_openapi_v3.yaml index bc313cfb8..5afac3b2d 100644 --- a/api/swagger-ui/dbas_openapi_v3.yaml +++ b/api/swagger-ui/dbas_openapi_v3.yaml @@ -3,7 +3,7 @@ servers: - url: 'http://localhost:4284/api' - url: 'https://dbas.cs.uni-duesseldorf.de/api' info: - version: "1.25.0" + version: "1.25.1" title: D-BAS paths: diff --git a/dbas/views/helper.py b/dbas/views/helper.py index ae9928d19..89bcd41b4 100644 --- a/dbas/views/helper.py +++ b/dbas/views/helper.py @@ -14,7 +14,7 @@ LOG = logging.getLogger(__name__) name = 'D-BAS' -version = '1.25.0' +version = '1.25.1' full_version = version project_name = name + ' ' + full_version diff --git a/package.json b/package.json index 77c79ffbf..25508c2d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "D-BAS", - "version": "1.25.0", + "version": "1.25.1", "description": "system for dialog-based online argumentation", "main": "app.js", "repository": "git@github.com:hhucn/dbas", diff --git a/pyproject.toml b/pyproject.toml index 06fbf1dd4..129e909cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbas" -version = "1.25.0" +version = "1.25.1" description = "" authors = ["None"]