Skip to content

Commit

Permalink
Bump version to v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
meliache committed Nov 6, 2023
1 parent 14fabbf commit 9cb79f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.1
current_version = 0.10.2
commit = True
tag = True

Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion b2luigi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down

0 comments on commit 9cb79f2

Please sign in to comment.