diff --git a/CHANGELOG.md b/CHANGELOG.md index a4d71f73495699c50b38ba204b3a8275e57a9546..be47de54cd33c917b8997eebaa55c31edfe71543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.11.0] 2023-10-13 ## ### Added ### @@ -15,22 +15,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 `conf/core/server.conf` for more information. * REST API: Permanent redirect from "FileSystem" to "FileSystem/". -### Changed ### - -### Deprecated ### - -### Removed ### - ### Fixed ### * Wrong url returned by FileSystem resource behind proxy. * `NullPointerException` in GRPC API converters when executing SELECT query on NULL values. -### Security ### - -### Documentation ### - ## [0.10.0] - 2023-06-02 ## (Florian Spreckelsen) diff --git a/CITATION.cff b/CITATION.cff index a45e422c288822d0c34e1f5df2bcb83ceedd8e23..962c0cfce8443708de4094ea83658bd468ada26d 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -23,6 +23,6 @@ authors: given-names: Stefan orcid: https://orcid.org/0000-0001-7214-8125 title: "CaosDB - Server" -version: 0.10.0 +version: 0.11.0 doi: 10.3390/data4020083 -date-released: 2023-06-02 +date-released: 2023-10-13 diff --git a/pom.xml b/pom.xml index 76c2cd85ad9ae0e918f3c5770311ed017308e02a..05d1aa4b7d8e01b5cd3794b6fabbd01ea81a24ac 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.caosdb</groupId> <artifactId>caosdb-server</artifactId> - <version>0.10.1-SNAPSHOT</version> + <version>0.11.0</version> <packaging>jar</packaging> <name>CaosDB Server</name> <scm> diff --git a/src/doc/conf.py b/src/doc/conf.py index 6b9b1f56157812db20cc7d7ebcb8525687956208..434ed4623fbacd240d35142f855c1fd4301de915 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -26,9 +26,9 @@ copyright = '2023, IndiScale GmbH' author = 'Daniel Hornung, Timm Fitschen' # The short X.Y version -version = '0.10.1' +version = '0.11.0' # The full version, including alpha/beta/rc tags -release = '0.10.1-SNAPSHOT' +release = '0.11.0' # -- General configuration ---------------------------------------------------