diff --git a/CHANGELOG.md b/CHANGELOG.md index 535fe457e20265480f6fb26c1042775b3b06e744..57a664e7e3d2986d56e44ce6c57234502105b87e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 ## diff --git a/setup.py b/setup.py index 310d77786949a9bc2982936457a90d73047f2b0c..cdb10b6b41b5c466187a4bc63a77f41bd04ec454 100755 --- a/setup.py +++ b/setup.py @@ -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) diff --git a/src/doc/conf.py b/src/doc/conf.py index b05fa1c71c1dcd0b59916594818449d2ebc574bd..b4dfcc9925eb8100b957b6c8c2c06c855e8d3ff0 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -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 ---------------------------------------------------