diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e5cfd70..52595f3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,38 @@ Changelog ========= +(v0.6.0) June 14, 2023 +---------------------- + +Commit `ef005bd `_ by `jacobbridges `_ on Jun 14, 2023 + +- `Pull Request #46 `_ +- Switch from TravisCI to Github Actions + + +Commit `d8c21ab `_ by `artemisart `_ on Apr 25, 2020 + +- `Pull Request #40 `_ +- Documentation + some fixes + + +Commit `9958f1f `_ by `soasme `_ on Sep 5, 2019 + +- `Pull Request #39 `_ +- Import Iterable from collections.abc for >=3.8 + + +Commit `486119e `_ by `fwfurtado `_ on Sep 5, 2019 + +- `Pull Request #37 `_ +- Added supporting to type hint in curried decorator + + +Commit `c01c2b7 `_ by `katoken-0215 `_ on Mar 24, 2018 + +- `Pull Request #33 `_ +- Introduce guard for recursive call by doctest. + (v0.5.0) July 17, 2017 ---------------------- diff --git a/docs/conf.py b/docs/conf.py index afbab72..6cf129b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ author = 'fn.py Contributors' # The full version, including alpha/beta/rc tags -release = '0.5.2' +release = '0.6.0' # -- General configuration --------------------------------------------------- diff --git a/fn/__init__.py b/fn/__init__.py index 1b73b62..f119241 100644 --- a/fn/__init__.py +++ b/fn/__init__.py @@ -2,6 +2,6 @@ from .stream import Stream from .underscore import shortcut as _ -__version__ = "0.5.2" +__version__ = "0.6.0" __all__ = ["F", "Stream", "_"]