Skip to content

Commit

Permalink
Bump v0.9 -> v0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
miso-belica committed Apr 21, 2022
1 parent b07eeff commit e9eb70d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0
current_version = 0.10.0
commit = false
tag = false

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion sumy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from __future__ import division, print_function, unicode_literals

__author__ = "Michal Belica"
__version__ = "0.9.0"
__version__ = "0.10.0"

0 comments on commit e9eb70d

Please sign in to comment.