From 3febef54254f8415a115604900cca7a599a706c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Tue, 3 May 2022 16:46:29 +0200 Subject: [PATCH] REL: release 0.4.1 --- CHANGELOG.md | 17 ++++++++++++----- RELEASE_GUIDELINES.md | 2 +- setup.py | 2 +- src/doc/conf.py | 4 ++-- 4 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58534a47..be44a47d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,20 +10,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed ### -- `JsonSchemaParser` now identifies `name` properties in the schema with the - CaosDB name property. - ### Deprecated ### ### Removed ### ### 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) `assure_object_is_in_list` now handles adding objects to an initially empty list correctly. -### Security ### - ## [0.4.0] - 2022-04-05 ## ### Added ### diff --git a/RELEASE_GUIDELINES.md b/RELEASE_GUIDELINES.md index e71234b8..7592b02d 100644 --- a/RELEASE_GUIDELINES.md +++ b/RELEASE_GUIDELINES.md @@ -9,7 +9,7 @@ guidelines of the CaosDB Project * All tests are passing. * FEATURES.md is up-to-date and a public API is being declared in that document. * CHANGELOG.md is up-to-date. -* DEPENDENCIES.md is up-to-date. +* dependencies in `setup.py` are up-to-date. ## Steps diff --git a/setup.py b/setup.py index 8dc4be73..9988a3af 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ MAJOR = 0 MINOR = 4 MICRO = 1 PRE = "" # e.g. rc0, alpha.1, 0.beta-23 -ISRELEASED = False +ISRELEASED = True if PRE: VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE) diff --git a/src/doc/conf.py b/src/doc/conf.py index 5f62cac4..c7f82a99 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -27,9 +27,9 @@ copyright = '2021, IndiScale GmbH' author = 'Daniel Hornung' # The short X.Y version -version = '0.4.0' +version = '0.4.1' # The full version, including alpha/beta/rc tags -release = '0.4.0' +release = '0.4.1' # -- General configuration --------------------------------------------------- -- GitLab