diff --git a/CITATION.cff b/CITATION.cff index cbcb570b27b7cd71f50645614222302bccc34805..148cccb1804f7ae254224074dfef408e014f5438 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 - Pylib -version: 0.14.0 +version: 0.15.0 doi: 10.3390/data4020083 -date-released: 2024-02-20 +date-released: 2024-07-09 diff --git a/setup.py b/setup.py index ee2a5fb6fd7212acfc9ce9bc732fc9f2d4f345b4..1a8a754219ddf84c0b9e088a13fd0283fa63a00f 100755 --- a/setup.py +++ b/setup.py @@ -46,10 +46,10 @@ from setuptools import find_packages, setup # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ######################################################################## -ISRELEASED = False +ISRELEASED = True MAJOR = 0 -MINOR = 14 -MICRO = 1 +MINOR = 15 +MICRO = 0 # Do not tag as pre-release until this commit # https://github.com/pypa/packaging/pull/515 # has made it into a release. Probably we should wait for pypa/packaging>=21.4 diff --git a/src/doc/conf.py b/src/doc/conf.py index 61a60d7c9e8d5c6b0959f4bba230cd483c06bc79..4a528d9e287daeeacd50e94cfba4e479b0430212 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -29,10 +29,10 @@ copyright = '2023, IndiScale GmbH' author = 'Daniel Hornung' # The short X.Y version -version = '0.14.1' +version = '0.15.0' # The full version, including alpha/beta/rc tags # release = '0.5.2-rc2' -release = '0.14.1-dev' +release = '0.15.0' # -- General configuration ---------------------------------------------------