Skip to content

Commit

Permalink
Merge pull request #220 from qbicsoftware/hotfix/2.8.1
Browse files Browse the repository at this point in the history
Patch release 2.8.1
  • Loading branch information
jenniferboedker authored Jun 14, 2021
2 parents ff51d25 + 1eae91b commit 6f2771a
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 8 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.8.0
version: 2.8.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.8.1 (2021-06-14)
------------------

**Added**

* Add new product unit type PER_FLOW_CELL("Flow Cell") to ``life.qbic.datamodel.dtos.business.services.ProductUnit`` (`#221 <https://github.com/qbicsoftware/data-model-lib/pull/221>`_)

**Fixed**

**Dependencies**

**Deprecated**


2.8.0 (2021-06-07)
------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ With Maven you can include the recent library version as dependency with:
<dependency>
<groupId>life.qbic</groupId>
<artifactId>data-model-lib</artifactId>
<version>2.8.0</version>
<version>2.8.1</version>
</dependency>
```
or Groovy Grape:

```
@Grapes(
@Grab(group='life.qbic', module='data-model-lib', version='2.8.0')
@Grab(group='life.qbic', module='data-model-lib', version='2.8.1')
)
```

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.8.0'
version = '2.8.1'
# The full version, including alpha/beta/rc tags.
release = '2.8.0'
release = '2.8.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.8.0</version> <!-- <<QUBE_FORCE_BUMP>> -->
<version>2.8.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.8.0
current_version = 2.8.1

[bumpversion_files_whitelisted]
dot_qube = .qube.yml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ enum ProductUnit {
PER_CHANNEL("Channel"),
PER_100_MICROGRAM_PEPTIDE_CHANNEL("100 microgram peptides channel"),
PER_500_ML("500 milliliter"),
PER_COMPARISON("Comparison")
PER_COMPARISON("Comparison"),
PER_FLOW_CELL("Flow cell")

/**
Holds the String value of the enum
Expand Down

0 comments on commit 6f2771a

Please sign in to comment.