Skip to content
Snippets Groups Projects
Verified Commit 528e2f7d authored by Timm Fitschen's avatar Timm Fitschen
Browse files

MAINT: prepare 0.7.2 release

parent 830eb1cc
No related branches found
No related tags found
1 merge request!53Release 0.7.2
Pipeline #20822 passed
......@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ##
## [0.7.2] - 2022-03-25 ##
### Added ###
......@@ -18,7 +18,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ###
* [caosdb-pylib#106](https://gitlab.indiscale.com/caosdb/src/caosdb-pylib/-/issues/106)
Parsing Error in class caosdb.common.models.ACL
Parsing Error in class caosdb.common.models.ACL. This may lead to the
unintentional revocation of permissions for some users or roles during
updates. However, no additional permissions are being granted.
### Security ###
......
* caosdb-server == 0.3
* Python >= 3.5
* caosdb-server >= 0.8
* Python >= 3.6
* pip >= 20.0.2
Any other dependencies are being installed via pip
Any other dependencies are defined in the setup.py and are being installed via pip
......@@ -45,11 +45,11 @@ from setuptools import find_packages, setup
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
########################################################################
ISRELEASED = False
ISRELEASED = True
MAJOR = 0
MINOR = 7
MICRO = 2
PRE = "dev" # e.g. rc0, alpha.1, 0.beta-23
PRE = None # e.g. rc0, alpha.1, 0.beta-23
if PRE:
VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
......
......@@ -29,10 +29,10 @@ copyright = '2022, IndiScale GmbH'
author = 'Daniel Hornung'
# The short X.Y version
version = '0.7'
version = '0.7.2'
# The full version, including alpha/beta/rc tags
# release = '0.5.2-rc2'
release = '0.7.2-dev'
release = '0.7.2'
# -- General configuration ---------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment