diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d078b5b..590b556 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.1 +current_version = 0.10.2 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e60804..ed69167 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Unreleased +**Full Changelog**: https://github.com/nils-braun/b2luigi/compare/v0.10.2...main + +## [0.10.2] - 2023-11-06 + ### Added * **gbasf2:** Local basf2 log level setting is now passed over to the grid jobs. You can now limit the log size of jobs with many warnings via `basf2.set_log_level(basf2.LogLevel.ERROR)`. This could fix some errors due to too large log sizes. Implemented by pickling local `basf2.logging.log_level`. @@ -32,7 +36,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### New Contributors * Tristan Fillinger @0ctagon -**Full Changelog**: https://github.com/nils-braun/b2luigi/compare/v0.10.1...main +**Full Changelog**: https://github.com/nils-braun/b2luigi/compare/v0.10.1...v0.10.2 ## [0.10.1] - 2023-04-17 diff --git a/b2luigi/__init__.py b/b2luigi/__init__.py index c826b9a..5e86e7c 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.1" +__version__ = "0.10.2" 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 6377edf..59a3ce0 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.1' +release = '0.10.2' # -- General configuration ---------------------------------------------------