Skip to content
Snippets Groups Projects
Verified Commit 0cc8ccb1 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

Version bump to 0.7.2

parents 1d3358c1 aa21262b
No related branches found
No related tags found
1 merge request!53Release 0.7.2
Pipeline #20314 passed
......@@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Documentation ###
## [0.7.1] - 2022-03-11 ##
### Documentation ###
- `timeout` option in example pycaosdb.ini
## [0.7.0] - 2022-01-21 ##
......
......@@ -48,8 +48,8 @@ from setuptools import find_packages, setup
ISRELEASED = False
MAJOR = 0
MINOR = 7
MICRO = 1
PRE = "" # e.g. rc0, alpha.1, 0.beta-23
MICRO = 2
PRE = "dev" # e.g. rc0, alpha.1, 0.beta-23
if PRE:
VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
......
......@@ -25,14 +25,14 @@ import sphinx_rtd_theme # noqa: E402
# -- Project information -----------------------------------------------------
project = 'pycaosdb'
copyright = '2020, IndiScale GmbH'
copyright = '2022, IndiScale GmbH'
author = 'Daniel Hornung'
# The short X.Y version
version = '0.5.2'
version = '0.7'
# The full version, including alpha/beta/rc tags
# release = '0.5.2-rc2'
release = '0.5.2'
release = '0.7.2-dev'
# -- General configuration ---------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment