diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dc324d..0dd033c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # Changelog -## 0.9.1 (unpublished) -**FEATURE:** Return the summary size by custom callable object +## 0.10.0 (2022-04-21) +- **FEATURE:** Add support for Ukrainian language in https://github.com/miso-belica/sumy/pull/168 +- **FEATURE:** Add support for the Greek Language by @NC0DER in https://github.com/miso-belica/sumy/pull/169 +- **FEATURE:** Return the summary size by custom callable object in https://github.com/miso-belica/sumy/pull/161 +- **FIX:** Compatibility for `from collections import Sequence` for Python 3.10 +- **FIX:** Fix SumBasicSummarizer with stemmer in https://github.com/miso-belica/sumy/pull/166 ## 0.9.0 (2021-10-21) - **INCOMPATIBILITY** Dropped official support for Python 2.7. It should still work if you install Python 2 compatible dependencies. diff --git a/setup.cfg b/setup.cfg index a5d8986..bb83078 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0 +current_version = 0.10.0 commit = false tag = false diff --git a/setup.py b/setup.py index c41ded5..b896a31 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ # https://blog.ionelmc.ro/presentations/packaging/ setup( name="sumy", - version="0.9.0", + version="0.10.0", description="Module for automatic summarization of text documents and HTML pages.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/sumy/__init__.py b/sumy/__init__.py index a6f0f00..83c4b43 100644 --- a/sumy/__init__.py +++ b/sumy/__init__.py @@ -4,4 +4,4 @@ from __future__ import division, print_function, unicode_literals __author__ = "Michal Belica" -__version__ = "0.9.0" +__version__ = "0.10.0"