Skip to content

Commit

Permalink
Correct project identifier (#208)
Browse files Browse the repository at this point in the history
This PR corrects the project identifier and adds the missing leading slash.
  • Loading branch information
wow-such-code authored May 12, 2021
1 parent a49b81d commit 2ba0714
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .qube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ email: [email protected]
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
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ Changelog
This project adheres to `Semantic Versioning <https://semver.org/>`_.


2.6.1 (2021-05-12)
------------------

**Added**

**Fixed**

* add missing leading slash to toString() method in ``life/qbic/datamodel/dtos/projectmanagement/ProjectIdentifier.groovy`` (`#207 <https://github.com/qbicsoftware/data-model-lib/pull/207>`_)

**Dependencies**

**Deprecated**


2.6.0 (2021-05-10)
------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>life.qbic</groupId>
<artifactId>data-model-lib</artifactId>
<version>2.6.0</version> <!-- <<QUBE_FORCE_BUMP>> -->
<version>2.6.1</version> <!-- <<QUBE_FORCE_BUMP>> -->
<name>data-model-lib</name>
<url>http://github.com/qbicsoftware/data-model-lib</url>
<description>Data models. A collection of QBiC's central data models and DTOs. </description>
Expand Down
2 changes: 1 addition & 1 deletion qube.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.6.0
current_version = 2.6.1

[bumpversion_files_whitelisted]
dot_qube = .qube.yml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ class ProjectIdentifier {

@Override
String toString() {
return "${projectSpace.toString()}/${projectCode.toString()}"
return "/${projectSpace.toString()}/${projectCode.toString()}"
}
}

0 comments on commit 2ba0714

Please sign in to comment.