From 20e17e05393a4c014402b4a62be365e11130d09c 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:37:43 +0200
Subject: [PATCH] REL: prepare release

---
 CHANGELOG.md    | 17 +++++++++++++++++
 FEATURES.md     |  8 ++++++++
 setup.py        |  6 +++---
 src/doc/conf.py |  4 ++--
 4 files changed, 30 insertions(+), 5 deletions(-)
 create mode 100644 FEATURES.md

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 78120cd2..cd4f2ab2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added ###
 
+### Changed ###
+
+### Deprecated ###
+
+### Removed ###
+
+### Fixed ###
+
+### Security ###
+
+### Documentation ###
+
+## [0.7.3] - 2022-05-03
+(Henrik tom Wörden)
+
+### Added ###
+
 - New function in apiutils that copies an Entity.
 - New EXPERIMENTAL module `high_level_api` which is a completely refactored version of
   the old `high_level_api` from apiutils. Please see the included documentation for details.
diff --git a/FEATURES.md b/FEATURES.md
new file mode 100644
index 00000000..977d7a48
--- /dev/null
+++ b/FEATURES.md
@@ -0,0 +1,8 @@
+# Experimental Features
+
+- High Level API in the module `high_level_api` is experimental and might be removed in future. It is for playing around with a possible future implementation of the Python client. See `src/doc/future_caosdb.md`
+
+
+# Features
+TODO: This is currently an incomplete list.
+- `to_graphics` defined in `caosdb.utils.plantuml` can be used to create an UML diagram of a data model
diff --git a/setup.py b/setup.py
index def734ac..8d75a0c6 100755
--- a/setup.py
+++ b/setup.py
@@ -45,10 +45,10 @@ from setuptools import find_packages, setup
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ########################################################################
 
-ISRELEASED = False
+ISRELEASED = True
 MAJOR = 0
-MINOR = 8
-MICRO = 0
+MINOR = 7
+MICRO = 3
 # Do not tag as pre-release until this commit
 # https://github.com/pypa/packaging/pull/515
 # has made it into a release. Probably we should wait for pypa/packaging>=21.4
diff --git a/src/doc/conf.py b/src/doc/conf.py
index ce1cfd26..9a048359 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -29,10 +29,10 @@ copyright = '2022, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.8.0'
+version = '0.7.3'
 # The full version, including alpha/beta/rc tags
 # release = '0.5.2-rc2'
-release = '0.8.0-dev'
+release = '0.7.3'
 
 
 # -- General configuration ---------------------------------------------------
-- 
GitLab