From 4b3462b42dfebca534d380491554f1d1598c1d4d Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Mon, 27 Nov 2023 10:28:15 +0100
Subject: [PATCH] REL: Set versions for release

---
 CHANGELOG.md    | 8 +-------
 CITATION.cff    | 4 ++--
 setup.py        | 6 +++---
 src/doc/conf.py | 6 +++---
 4 files changed, 9 insertions(+), 15 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1d626ab..2419b32f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ 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.9.0] - 2023-11-27 ##
 
 ### Added ###
 
@@ -22,17 +22,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 * `TableImporter.check_datatypes` allows numeric values in string columns if
   `strict=False` (default).
 
-### Deprecated ###
-
-### Removed ###
-
 ### Fixed ###
 
 * `TableImporter.check_missing` in case of array-valued fields in table
 * YAML model parser has better description handling.
 
-### Security ###
-
 ### Documentation ###
 
 * Test coverage reports are now generated in `.tox/cov_html/` by tox.
diff --git a/CITATION.cff b/CITATION.cff
index bd468e5a..eea04933 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -20,6 +20,6 @@ authors:
     given-names: Stefan
     orcid: https://orcid.org/0000-0001-7214-8125
 title: CaosDB - Advanced User Tools
-version: 0.8.0
+version: 0.9.0
 doi: 10.3390/data4020083
-date-released: 2023-05-30
\ No newline at end of file
+date-released: 2023-11-27
\ No newline at end of file
diff --git a/setup.py b/setup.py
index f71fd261..50cb5946 100755
--- a/setup.py
+++ b/setup.py
@@ -46,10 +46,10 @@ from setuptools import find_packages, setup
 ########################################################################
 
 MAJOR = 0
-MINOR = 8
-MICRO = 1
+MINOR = 9
+MICRO = 0
 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 4436981e..60630cf6 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -23,13 +23,13 @@ import sphinx_rtd_theme
 # -- Project information -----------------------------------------------------
 
 project = 'caosadvancedtools'
-copyright = '2021, IndiScale GmbH'
+copyright = '2023, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.8.1'
+version = '0.9.0'
 # The full version, including alpha/beta/rc tags
-release = '0.8.1-dev'
+release = '0.9.0'
 
 
 # -- General configuration ---------------------------------------------------
-- 
GitLab