Skip to content
Snippets Groups Projects
Commit dfe15531 authored by florian's avatar florian
Browse files

REL: Update changelog and set version

parent be6e2a63
No related branches found
No related tags found
1 merge request!54REL: Release 0.5.0
Pipeline #27923 passed
...@@ -4,27 +4,20 @@ All notable changes to this project will be documented in this file. ...@@ -4,27 +4,20 @@ 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.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## ## [0.5.0] - 2022-09-05 ##
(Florian Spreckelsen)
### Added ### ### Added ###
- You can now use `python -m caosadvancedtools.models.parser model_file` to - You can now use `python -m caosadvancedtools.models.parser model_file` to
parse and potentially synchronize data models. parse and potentially synchronize data models.
### Changed ###
### Deprecated ### ### Deprecated ###
- [#36](https://gitlab.com/caosdb/caosdb-advanced-user-tools/-/issues/36) - [#36](https://gitlab.com/caosdb/caosdb-advanced-user-tools/-/issues/36)
`parent` keyword in yaml datamodel definition (replaced by `parent` keyword in yaml datamodel definition (replaced by
`inherit_from_{obligatory|recommended|suggested}` keywords). `inherit_from_{obligatory|recommended|suggested}` keywords).
### Removed ###
### Fixed ###
### Security ###
## [0.4.1] - 2022-05-03 ## ## [0.4.1] - 2022-05-03 ##
(Henrik tom Wörden) (Henrik tom Wörden)
......
...@@ -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 = 4 MINOR = 5
MICRO = 2 MICRO = 1
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.4.1' version = '0.5.0'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.4.1' release = '0.5.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