Skip to content

Commit

Permalink
Bump 0.8.1 -> 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miso-belica committed Oct 21, 2021
1 parent 996fe25 commit 54e1f2b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
18 changes: 15 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Changelog

## 0.9.0 (???)
- Added support for Hebrew language [#150](https://github.com/miso-belica/sumy/issues/150).
- Dropped official support for Python 2.7. It should still work if you install Python 2 compatible dependencies.
## 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.
- **FEATURE:** Add basic Korean support by @kimbyungnam in https://github.com/miso-belica/sumy/pull/129
- **FEATURE:** Add support for the Hebrew language by @miso-belica in https://github.com/miso-belica/sumy/pull/151
- **FIX:** Allow words with dashes/apostrophe returned from tokenizer by @miso-belica in https://github.com/miso-belica/sumy/pull/144
- **FIX:** Ignore empty sentences from tokenizer by @miso-belica in https://github.com/miso-belica/sumy/pull/153
- Basic documentation by @miso-belica in https://github.com/miso-belica/sumy/pull/133
- Speedup of the TextRank algorithm by @miso-belica in https://github.com/miso-belica/sumy/pull/140
- Fix missing license in sdist by @dopplershift in https://github.com/miso-belica/sumy/pull/157
- added test and call for stemmer by @bdalal in https://github.com/miso-belica/sumy/pull/131
- Fix simple typo: referene -> reference by @timgates42 in https://github.com/miso-belica/sumy/pull/143
- Add codecov service to tests by @miso-belica in https://github.com/miso-belica/sumy/pull/136
- Add gitpod config by @miso-belica in https://github.com/miso-belica/sumy/pull/138
- Try to run Python 3.7 and 3.8 on TravisCI by @miso-belica in https://github.com/miso-belica/sumy/pull/130
- Fix TravisCI for Python 3.4 by @miso-belica in https://github.com/miso-belica/sumy/pull/134

## 0.8.1 (2019-05-19)
- Open files for `PlaintextParser` in UTF-8 encoding [#123](https://github.com/miso-belica/sumy/pull/123)
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.8.1
current_version = 0.9.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.8.1",
version="0.9.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.8.1"
__version__ = "0.9.0"

0 comments on commit 54e1f2b

Please sign in to comment.