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

REL: Set versions for release

parent 06a3d145
No related branches found
No related tags found
1 merge request!89ENH: JsonSchemaExporter accepts do_not_create parameter.
Pipeline #44204 passed
This commit is part of merge request !89. Comments created here will be created in the context of that merge request.
...@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. ...@@ -4,7 +4,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.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.9.0] - 2023-11-27 ##
### Added ### ### Added ###
...@@ -22,17 +22,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -22,17 +22,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* `TableImporter.check_datatypes` allows numeric values in string columns if * `TableImporter.check_datatypes` allows numeric values in string columns if
`strict=False` (default). `strict=False` (default).
### Deprecated ###
### Removed ###
### Fixed ### ### Fixed ###
* `TableImporter.check_missing` in case of array-valued fields in table * `TableImporter.check_missing` in case of array-valued fields in table
* YAML model parser has better description handling. * YAML model parser has better description handling.
### Security ###
### Documentation ### ### Documentation ###
* Test coverage reports are now generated in `.tox/cov_html/` by tox. * Test coverage reports are now generated in `.tox/cov_html/` by tox.
......
...@@ -20,6 +20,6 @@ authors: ...@@ -20,6 +20,6 @@ authors:
given-names: Stefan given-names: Stefan
orcid: https://orcid.org/0000-0001-7214-8125 orcid: https://orcid.org/0000-0001-7214-8125
title: CaosDB - Advanced User Tools title: CaosDB - Advanced User Tools
version: 0.8.0 version: 0.9.0
doi: 10.3390/data4020083 doi: 10.3390/data4020083
date-released: 2023-05-30 date-released: 2023-11-27
\ No newline at end of file \ No newline at end of file
...@@ -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 = 8 MINOR = 9
MICRO = 1 MICRO = 0
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)
......
...@@ -23,13 +23,13 @@ import sphinx_rtd_theme ...@@ -23,13 +23,13 @@ import sphinx_rtd_theme
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'caosadvancedtools' project = 'caosadvancedtools'
copyright = '2021, IndiScale GmbH' copyright = '2023, IndiScale GmbH'
author = 'Daniel Hornung' author = 'Daniel Hornung'
# The short X.Y version # The short X.Y version
version = '0.8.1' version = '0.9.0'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.8.1-dev' release = '0.9.0'
# -- General configuration --------------------------------------------------- # -- 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