diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b8ee250626951f75f44cd022b5597c15b938112..0dead01baa2ed6fe45ddd74931b2863a3bc5cf38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added ### +### Changed ### + +### Deprecated ### + +### Removed ### + +### Fixed ### + +### Security ### + +### Documentation ### + +## [0.10.0] - 2024-04-24 ## + +### Added ### + - XLSX handling: template generator and conversion from Json to XLSX - Json schema exporter: - has new parameter `use_rt_pool` @@ -19,8 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * `table_converter.to_table` now returns an empty DataFrame instead of raising a ValueError when called with an empty container. -### Deprecated ### - ### Removed ### * The deprecated `parent` keyword from the YAML datamodel specification. Use @@ -30,9 +44,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### - Json schema exporter handles reference properties better. -- [#59](https://gitlab.com/linkahead/linkahead-advanced-user-tools/-/issues/59) `to_table` failed on lists as values. - -### Security ### +- [#59](https://gitlab.com/linkahead/linkahead-advanced-user-tools/-/issues/59) + `to_table` failed on lists as values. ### Documentation ### diff --git a/CITATION.cff b/CITATION.cff index eea049338996c494a88076b9e9e0f3131ed44a66..6f7b69b665ada694ec5756fd0a6bb16c490c23a5 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -20,6 +20,6 @@ authors: given-names: Stefan orcid: https://orcid.org/0000-0001-7214-8125 title: CaosDB - Advanced User Tools -version: 0.9.0 +version: 0.10.0 doi: 10.3390/data4020083 -date-released: 2023-11-27 \ No newline at end of file +date-released: 2024-04-24 \ No newline at end of file diff --git a/README.md b/README.md index 662bf6a6309aaa307505b0b8027b30664756bf10..e652daf17b938fdd1226c192d514724dea1f2a62 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Conduct](https://gitlab.com/caosdb/caosdb/-/blob/dev/CODE_OF_CONDUCT.md). * Copyright (C) 2018 Research Group Biomedical Physics, Max Planck Institute for Dynamics and Self-Organization Göttingen. -* Copyright (C) 2020-2021 Indiscale GmbH <info@indiscale.com> +* Copyright (C) 2020-2023 Indiscale GmbH <info@indiscale.com> All files in this repository are licensed under a [GNU Affero General Public License](LICENCE.md) (version 3 or later). diff --git a/setup.py b/setup.py index 4a73b869821c4f1352381a84b9d220e4f12e5b45..6f482155c25a19039b8afc4343d10186db321cd0 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ from setuptools import find_packages, setup ######################################################################## MAJOR = 0 -MINOR = 9 +MINOR = 10 MICRO = 1 PRE = "" # e.g. rc0, alpha.1, 0.beta-23 ISRELEASED = False diff --git a/src/doc/conf.py b/src/doc/conf.py index f4954a5921b7edaacf41497863892afb5715fca5..30299a59638e23d1645c85144e1bcbb7663a3051 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -27,9 +27,9 @@ copyright = '2023, IndiScale GmbH' author = 'Daniel Hornung' # The short X.Y version -version = '0.9.1' +version = '0.10.1' # The full version, including alpha/beta/rc tags -release = '0.9.1-dev' +release = '0.10.1-dev' # -- General configuration ---------------------------------------------------