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 ...@@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Documentation ### ### Documentation ###
## [0.7.1] - 2022-03-11 ##
### Documentation ###
- `timeout` option in example pycaosdb.ini - `timeout` option in example pycaosdb.ini
## [0.7.0] - 2022-01-21 ## ## [0.7.0] - 2022-01-21 ##
......
...@@ -48,8 +48,8 @@ from setuptools import find_packages, setup ...@@ -48,8 +48,8 @@ from setuptools import find_packages, setup
ISRELEASED = False ISRELEASED = False
MAJOR = 0 MAJOR = 0
MINOR = 7 MINOR = 7
MICRO = 1 MICRO = 2
PRE = "" # e.g. rc0, alpha.1, 0.beta-23 PRE = "dev" # e.g. rc0, alpha.1, 0.beta-23
if PRE: if PRE:
VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE) VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
......
...@@ -25,14 +25,14 @@ import sphinx_rtd_theme # noqa: E402 ...@@ -25,14 +25,14 @@ import sphinx_rtd_theme # noqa: E402
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'pycaosdb' project = 'pycaosdb'
copyright = '2020, IndiScale GmbH' copyright = '2022, IndiScale GmbH'
author = 'Daniel Hornung' author = 'Daniel Hornung'
# The short X.Y version # The short X.Y version
version = '0.5.2' version = '0.7'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
# release = '0.5.2-rc2' # release = '0.5.2-rc2'
release = '0.5.2' release = '0.7.2-dev'
# -- 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