From 964c7aceb0382db00d077a6700bc781d4608eb20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <henrik@trineo.org> Date: Thu, 3 Jun 2021 15:16:37 +0200 Subject: [PATCH] MAINT: prepare release --- CHANGELOG.md | 14 ++++++++++++++ setup.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a407cd21..622d5678 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added ### +### Changed ### + +### Deprecated ### + +### Removed ### + +### Fixed ### + +### Security ### + +## [0.5.2] - 2021-06-03 ## + +### Added ### + * Entity State support (experimental, no StateModel support yet). See the `caosdb.State` class for more information. * `etag` property for the `caosdb.Query` class. The etag allows to debug the diff --git a/setup.py b/setup.py index d491a1d3..d51e7829 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ MAJOR = 0 MINOR = 5 MICRO = 2 PRE = "" # e.g. rc0, alpha.1, 0.beta-23 -ISRELEASED = False +ISRELEASED = True if PRE: VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE) -- GitLab