From ad1fde5440e2086333a1509f20fcf9dc990c7904 Mon Sep 17 00:00:00 2001
From: fspreck <f.spreckelsen@indiscale.com>
Date: Tue, 11 Oct 2022 14:43:25 +0200
Subject: [PATCH] REL: Fix version in setup.py

---
 setup.py        | 6 +++---
 src/doc/conf.py | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/setup.py b/setup.py
index 3f2bb4ff..1a1cbd95 100755
--- a/setup.py
+++ b/setup.py
@@ -46,10 +46,10 @@ from setuptools import find_packages, setup
 ########################################################################
 
 MAJOR = 0
-MINOR = 5
-MICRO = 1
+MINOR = 6
+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 53186216..8302fd6f 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.5.1'
+version = '0.6.0'
 # The full version, including alpha/beta/rc tags
-release = '0.5.1-dev'
+release = '0.6.0'
 
 
 # -- General configuration ---------------------------------------------------
-- 
GitLab