From 2ba0714485dcd1cbd9f0606257f5466733a98526 Mon Sep 17 00:00:00 2001 From: wow-such-code Date: Wed, 12 May 2021 16:45:22 +0200 Subject: [PATCH] Correct project identifier (#208) This PR corrects the project identifier and adds the missing leading slash. --- .qube.yml | 2 +- CHANGELOG.rst | 14 ++++++++++++++ docs/conf.py | 4 ++-- pom.xml | 2 +- qube.cfg | 2 +- .../projectmanagement/ProjectIdentifier.groovy | 2 +- 6 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.qube.yml b/.qube.yml index 600dc22ff2..3af1e6cbae 100644 --- a/.qube.yml +++ b/.qube.yml @@ -4,7 +4,7 @@ email: sven.fillinger@qbic.uni-tuebingen.de project_name: data-model-lib project_short_description: "Data models. A collection of QBiC's central data models\ \ and DTOs. " -version: 2.6.0 +version: 2.6.1 domain: lib language: groovy project_slug: data-model-lib diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 608581fbe7..ab647688fb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,20 @@ Changelog This project adheres to `Semantic Versioning `_. +2.6.1 (2021-05-12) +------------------ + +**Added** + +**Fixed** + +* add missing leading slash to toString() method in ``life/qbic/datamodel/dtos/projectmanagement/ProjectIdentifier.groovy`` (`#207 `_) + +**Dependencies** + +**Deprecated** + + 2.6.0 (2021-05-10) ------------------ diff --git a/docs/conf.py b/docs/conf.py index 417c56a8ef..99361394ba 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # the built documents. # # The short X.Y version. -version = '2.6.0' +version = '2.6.1' # The full version, including alpha/beta/rc tags. -release = '2.6.0' +release = '2.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pom.xml b/pom.xml index 8c4c2f6f39..bab589c431 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ life.qbic data-model-lib - 2.6.0 + 2.6.1 data-model-lib http://github.com/qbicsoftware/data-model-lib Data models. A collection of QBiC's central data models and DTOs. diff --git a/qube.cfg b/qube.cfg index fa8d6808f6..7299f47ec3 100644 --- a/qube.cfg +++ b/qube.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.6.0 +current_version = 2.6.1 [bumpversion_files_whitelisted] dot_qube = .qube.yml diff --git a/src/main/groovy/life/qbic/datamodel/dtos/projectmanagement/ProjectIdentifier.groovy b/src/main/groovy/life/qbic/datamodel/dtos/projectmanagement/ProjectIdentifier.groovy index 25333d09e6..faf45bd9f9 100644 --- a/src/main/groovy/life/qbic/datamodel/dtos/projectmanagement/ProjectIdentifier.groovy +++ b/src/main/groovy/life/qbic/datamodel/dtos/projectmanagement/ProjectIdentifier.groovy @@ -31,6 +31,6 @@ class ProjectIdentifier { @Override String toString() { - return "${projectSpace.toString()}/${projectCode.toString()}" + return "/${projectSpace.toString()}/${projectCode.toString()}" } }