Skip to content

Commit 9cb79f2

Browse files
committed
Bump version to v0.10.2
1 parent 14fabbf commit 9cb79f2

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.10.1
2+
current_version = 0.10.2
33
commit = True
44
tag = True
55

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
## Unreleased
1010

11+
**Full Changelog**: https://github.com/nils-braun/b2luigi/compare/v0.10.2...main
12+
13+
## [0.10.2] - 2023-11-06
14+
1115
### Added
1216

1317
* **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
3236
### New Contributors
3337
* Tristan Fillinger @0ctagon
3438
35-
**Full Changelog**: https://github.com/nils-braun/b2luigi/compare/v0.10.1...main
39+
**Full Changelog**: https://github.com/nils-braun/b2luigi/compare/v0.10.1...v0.10.2
3640
3741
## [0.10.1] - 2023-04-17
3842

b2luigi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# version must be defined after importing the luigi namespace,
66
# otherwise the b2luigi.__version__ gets overwritten by the one from luigi
7-
__version__ = "0.10.1"
7+
__version__ = "0.10.2"
88

99
from b2luigi.core.parameter import wrap_parameter, BoolParameter
1010
from typing import Optional, Union, Collection

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The short X.Y version
2929
version = ''
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.10.1'
31+
release = '0.10.2'
3232

3333

3434
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)