Skip to content

Commit

Permalink
Bump: 0.6.0 -> 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miso-belica committed Jul 22, 2017
1 parent 479ac3b commit 7546c65
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.7.0 (2017-07-22)
- Added support for Chinese. Thanks to [@astropeak](https://github.com/astropeak).

## 0.6.0 (2017-03-05)
- Dropped support for distutils when installing sumy.
- Added support for Japanese. Thanks to [@tuvistavie](https://github.com/tuvistavie).
- Fixed incorrect n-grams computation for more sentences. Thanks to [@odek53r](https://github.com/odek53r).
- Fixed NLTK dependency for Python 3.3. NLTK 3.2 dropped support for Python 3.3 so sumy needs 3.1.

## 0.5.1 (2016-11-17)
- Fixed missing stopwords in SumBasic summarizer.

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.5.1
current_version = 0.7.0
commit = false
tag = false

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# https://blog.ionelmc.ro/presentations/packaging/
setup(
name="sumy",
version="0.5.1",
version="0.7.0",
description="Module for automatic summarization of text documents and HTML pages.",
long_description=long_description,
author="Michal Belica",
Expand Down Expand Up @@ -69,7 +69,7 @@
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",

"Natural Language :: Chinese",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: Czech",
"Natural Language :: English",
"Natural Language :: French",
Expand Down
2 changes: 1 addition & 1 deletion sumy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@


__author__ = "Michal Belica"
__version__ = "0.5.1"
__version__ = "0.7.0"

0 comments on commit 7546c65

Please sign in to comment.