From fea642646ee83306cf45d5044f833328bde49f95 Mon Sep 17 00:00:00 2001 From: Florian Spreckelsen <f.spreckelsen@indiscale.com> Date: Thu, 16 Jan 2025 10:51:53 +0100 Subject: [PATCH] REL: Prepare 0.13.0 --- CITATION.cff | 4 ++-- setup.py | 6 +++--- src/doc/conf.py | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index c4628534..6e685219 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.12.0 +version: 0.13.0 doi: 10.3390/data4020083 -date-released: 2024-07-31 \ No newline at end of file +date-released: 2025-01-16 \ No newline at end of file diff --git a/setup.py b/setup.py index c7dd54a9..d8d28e4d 100755 --- a/setup.py +++ b/setup.py @@ -46,10 +46,10 @@ from setuptools import find_packages, setup ######################################################################## MAJOR = 0 -MINOR = 12 -MICRO = 1 +MINOR = 13 +MICRO = 0 PRE = "" # e.g. rc0, alpha.1, 0.beta-23 -ISRELEASED = False +ISRELEASED = True if PRE: VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE) diff --git a/src/doc/conf.py b/src/doc/conf.py index e8975650..12495069 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -23,13 +23,13 @@ import sphinx_rtd_theme # -- Project information ----------------------------------------------------- project = 'caosadvancedtools' -copyright = '2023, IndiScale GmbH' +copyright = '2025, IndiScale GmbH' author = 'Daniel Hornung' # The short X.Y version -version = '0.12.1' +version = '0.13.0' # The full version, including alpha/beta/rc tags -release = '0.12.1-dev' +release = '0.13.0' # -- General configuration --------------------------------------------------- -- GitLab