Skip to content
Snippets Groups Projects
Commit ad1fde54 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

REL: Fix version in setup.py

parent 2c205543
No related branches found
No related tags found
1 merge request!59FIX: if multiple updates for one entity exist, the retrieve would result in an...
Pipeline #29211 passed
...@@ -46,10 +46,10 @@ from setuptools import find_packages, setup ...@@ -46,10 +46,10 @@ from setuptools import find_packages, setup
######################################################################## ########################################################################
MAJOR = 0 MAJOR = 0
MINOR = 5 MINOR = 6
MICRO = 1 MICRO = 0
PRE = "" # e.g. rc0, alpha.1, 0.beta-23 PRE = "" # e.g. rc0, alpha.1, 0.beta-23
ISRELEASED = False ISRELEASED = True
if PRE: if PRE:
VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE) VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
......
...@@ -27,9 +27,9 @@ copyright = '2021, IndiScale GmbH' ...@@ -27,9 +27,9 @@ copyright = '2021, IndiScale GmbH'
author = 'Daniel Hornung' author = 'Daniel Hornung'
# The short X.Y version # The short X.Y version
version = '0.5.1' version = '0.6.0'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.5.1-dev' release = '0.6.0'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment