Skip to content
Snippets Groups Projects
Commit 3febef54 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

REL: release 0.4.1

parent ed5695e0
Branches
Tags
1 merge request!43REL: Release 0.4.1
Pipeline #22451 passed
...@@ -10,20 +10,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -10,20 +10,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### ### Changed ###
- `JsonSchemaParser` now identifies `name` properties in the schema with the
CaosDB name property.
### Deprecated ### ### Deprecated ###
### Removed ### ### Removed ###
### Fixed ### ### Fixed ###
### Security ###
## [0.4.1] - 2022-05-03 ##
(Henrik tom Wörden)
### Changed ###
- `JsonSchemaParser` now identifies `name` properties in the schema with the
CaosDB name property.
### Fixed ###
- [#40](https://gitlab.com/caosdb/caosdb-advanced-user-tools/-/issues/40) - [#40](https://gitlab.com/caosdb/caosdb-advanced-user-tools/-/issues/40)
`assure_object_is_in_list` now handles adding objects to an initially empty list correctly. `assure_object_is_in_list` now handles adding objects to an initially empty list correctly.
### Security ###
## [0.4.0] - 2022-04-05 ## ## [0.4.0] - 2022-04-05 ##
### Added ### ### Added ###
......
...@@ -9,7 +9,7 @@ guidelines of the CaosDB Project ...@@ -9,7 +9,7 @@ guidelines of the CaosDB Project
* All tests are passing. * All tests are passing.
* FEATURES.md is up-to-date and a public API is being declared in that document. * FEATURES.md is up-to-date and a public API is being declared in that document.
* CHANGELOG.md is up-to-date. * CHANGELOG.md is up-to-date.
* DEPENDENCIES.md is up-to-date. * dependencies in `setup.py` are up-to-date.
## Steps ## Steps
......
...@@ -49,7 +49,7 @@ MAJOR = 0 ...@@ -49,7 +49,7 @@ MAJOR = 0
MINOR = 4 MINOR = 4
MICRO = 1 MICRO = 1
PRE = "" # e.g. rc0, alpha.1, 0.beta-23 PRE = "" # e.g. rc0, alpha.1, 0.beta-23
ISRELEASED = False ISRELEASED = True
if PRE: if PRE:
VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE) VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
......
...@@ -27,9 +27,9 @@ copyright = '2021, IndiScale GmbH' ...@@ -27,9 +27,9 @@ copyright = '2021, IndiScale GmbH'
author = 'Daniel Hornung' author = 'Daniel Hornung'
# The short X.Y version # The short X.Y version
version = '0.4.0' version = '0.4.1'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.4.0' release = '0.4.1'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment