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
......@@ -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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ##
## [0.9.0] - 2023-11-27 ##
### Added ###
......@@ -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
`strict=False` (default).
### Deprecated ###
### Removed ###
### Fixed ###
* `TableImporter.check_missing` in case of array-valued fields in table
* YAML model parser has better description handling.
### Security ###
### Documentation ###
* Test coverage reports are now generated in `.tox/cov_html/` by tox.
......
......@@ -20,6 +20,6 @@ authors:
given-names: Stefan
orcid: https://orcid.org/0000-0001-7214-8125
title: CaosDB - Advanced User Tools
version: 0.8.0
version: 0.9.0
doi: 10.3390/data4020083
date-released: 2023-05-30
\ No newline at end of file
date-released: 2023-11-27
\ No newline at end of file
......@@ -46,10 +46,10 @@ from setuptools import find_packages, setup
########################################################################
MAJOR = 0
MINOR = 8
MICRO = 1
MINOR = 9
MICRO = 0
PRE = "" # e.g. rc0, alpha.1, 0.beta-23
ISRELEASED = False
ISRELEASED = True
if PRE:
VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
......
......@@ -23,13 +23,13 @@ import sphinx_rtd_theme
# -- Project information -----------------------------------------------------
project = 'caosadvancedtools'
copyright = '2021, IndiScale GmbH'
copyright = '2023, IndiScale GmbH'
author = 'Daniel Hornung'
# The short X.Y version
version = '0.8.1'
version = '0.9.0'
# The full version, including alpha/beta/rc tags
release = '0.8.1-dev'
release = '0.9.0'
# -- 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