From dfe15531fbe098af605412d110db19162bd74d21 Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Mon, 5 Sep 2022 13:06:04 +0200
Subject: [PATCH] REL: Update changelog and set version

---
 CHANGELOG.md    | 11 ++---------
 setup.py        |  6 +++---
 src/doc/conf.py |  4 ++--
 3 files changed, 7 insertions(+), 14 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 58cd56df..99e9a1c0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,27 +4,20 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
-## [Unreleased] ##
+## [0.5.0] - 2022-09-05 ##
+(Florian Spreckelsen)
 
 ### Added ###
 
 - You can now use `python -m caosadvancedtools.models.parser model_file` to 
   parse and potentially synchronize data models.
 
-### Changed ###
-
 ### Deprecated ###
 
 - [#36](https://gitlab.com/caosdb/caosdb-advanced-user-tools/-/issues/36)
   `parent` keyword in yaml datamodel definition (replaced by
   `inherit_from_{obligatory|recommended|suggested}` keywords).
 
-### Removed ###
-
-### Fixed ###
-
-### Security ###
-
 ## [0.4.1] - 2022-05-03 ##
 (Henrik tom Wörden)
 
diff --git a/setup.py b/setup.py
index 929613de..e6ebb6dd 100755
--- a/setup.py
+++ b/setup.py
@@ -46,10 +46,10 @@ from setuptools import find_packages, setup
 ########################################################################
 
 MAJOR = 0
-MINOR = 4
-MICRO = 2
+MINOR = 5
+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 c7f82a99..9eb8c08a 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.1'
+version = '0.5.0'
 # The full version, including alpha/beta/rc tags
-release = '0.4.1'
+release = '0.5.0'
 
 
 # -- General configuration ---------------------------------------------------
-- 
GitLab