From 62e74778ae5db9339a0140a9132bb3b76a3f4545 Mon Sep 17 00:00:00 2001 From: Tom Bland Date: Tue, 19 Nov 2024 16:11:23 +0000 Subject: [PATCH] Bump version --- .bumpversion.cfg | 2 +- CITATION.cff | 4 ++-- docs/conf.py | 2 +- src/muse/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 443e9b36a..9b5beed23 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.2 +current_version = 1.2.3 commit = True tag = True diff --git a/CITATION.cff b/CITATION.cff index 549e0878a..33f15e1ef 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -9,5 +9,5 @@ authors: given-names: Adam title: MUSE_OS -version: v1.2.2 -date-released: 2024-08-13 +version: v1.2.3 +date-released: 2024-11-19 diff --git a/docs/conf.py b/docs/conf.py index 661fa8904..a747345c2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -8,7 +8,7 @@ project = "MUSE" copyright = "2024, Imperial College London" author = "Imperial College London" -release = "1.2.2" +release = "1.2.3" version = ".".join(release.split(".")[:2]) # -- General configuration --------------------------------------------------- diff --git a/src/muse/__init__.py b/src/muse/__init__.py index a0fe9856a..5703279a0 100644 --- a/src/muse/__init__.py +++ b/src/muse/__init__.py @@ -2,7 +2,7 @@ import os -VERSION = "1.2.2" +VERSION = "1.2.3" def _create_logger(color: bool = True):