From 3f74a458ff108b6d34e8b72c95d8672adb7631e1 Mon Sep 17 00:00:00 2001 From: Michael Eliachevitch Date: Mon, 18 Dec 2023 16:24:58 +0100 Subject: [PATCH] Bump version to 0.10.2-archived Further releases will be made under the official Belle II fork --- .bumpversion.cfg | 2 +- b2luigi/__init__.py | 2 +- docs/conf.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 590b556..23a7698 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.2 +current_version = 0.10.2-archived commit = True tag = True diff --git a/b2luigi/__init__.py b/b2luigi/__init__.py index 5e86e7c..96e2c6e 100644 --- a/b2luigi/__init__.py +++ b/b2luigi/__init__.py @@ -4,7 +4,7 @@ # version must be defined after importing the luigi namespace, # otherwise the b2luigi.__version__ gets overwritten by the one from luigi -__version__ = "0.10.2" +__version__ = "0.10.2-archived" from b2luigi.core.parameter import wrap_parameter, BoolParameter from typing import Optional, Union, Collection diff --git a/docs/conf.py b/docs/conf.py index 59a3ce0..ff4d116 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '0.10.2' +release = "0.10.2-archived" # -- General configuration ---------------------------------------------------