diff --git a/CHANGELOG.md b/CHANGELOG.md index a42cc7e..947f00b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased ### Added ### Changed + +## [0.15.1] - 2019-11-1 +### Changed - Added support for variables with multiple dots in the name (nested branches). Issue #95, PR #97 [@kreczko](https://github.com/kreczko) - Fix JaggedNth to work with arbitrary depth jagged arrays, Issue #87, PR #99 [@benkrikler](https://github.com/benkrikler) - Add protection against multiple dimensions using the same output name in a BinnedDataframe stage, Issue #92, PR #100 [@benkrikler](https://github.com/benkrikler) diff --git a/fast_carpenter/version.py b/fast_carpenter/version.py index a0eeccf..99b7741 100644 --- a/fast_carpenter/version.py +++ b/fast_carpenter/version.py @@ -12,5 +12,5 @@ def split_version(version): return tuple(result) -__version__ = '0.15.0' +__version__ = '0.15.1' version_info = split_version(__version__) # noqa diff --git a/setup.cfg b/setup.cfg index c9fcc80..40096df 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.0 +current_version = 0.15.1 commit = True tag = False