From 4543ddc2c4f19f96cec6d05555d19d1aab2dd0bf Mon Sep 17 00:00:00 2001 From: Edwin Onuonga Date: Wed, 1 Feb 2023 08:03:28 +0000 Subject: [PATCH] bump version and changelog --- CHANGELOG.md | 15 +++++++++++++++ lib/sequentia/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28cc2ee..95f1104 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# Changelog + + +## [1.1.1](https://github.com/eonu/sequentia/releases/tag/v1.1.1) + +#### Major changes + +- Remove `scikit-learn` validation constraints from `IndependentFunctionTransformer`. ([#237](https://github.com/eonu/sequentia/pull/237)) + +#### Minor changes + +- Change default `mean_filter`/`median_filter` width to 5. ([#238](https://github.com/eonu/sequentia/pull/238)) +- Update repository documentation. ([#239](https://github.com/eonu/sequentia/pull/239)) + + ## [1.1.0](https://github.com/eonu/sequentia/releases/tag/v1.1.0) #### Major changes diff --git a/lib/sequentia/__init__.py b/lib/sequentia/__init__.py index a480f1e..f1d9e1e 100644 --- a/lib/sequentia/__init__.py +++ b/lib/sequentia/__init__.py @@ -5,7 +5,7 @@ from .utils import * __name__ = "sequentia" -__version__ = "1.1.0" +__version__ = "1.1.1" __author__ = "Edwin Onuonga" __email__ = "ed@eonu.net" __copyright__ = f"2019-2023, {__author__}"