Skip to content

Commit 7546c65

Browse files
committed
Bump: 0.6.0 -> 0.7.0
1 parent 479ac3b commit 7546c65

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.7.0 (2017-07-22)
4+
- Added support for Chinese. Thanks to [@astropeak](https://github.com/astropeak).
5+
6+
## 0.6.0 (2017-03-05)
7+
- Dropped support for distutils when installing sumy.
8+
- Added support for Japanese. Thanks to [@tuvistavie](https://github.com/tuvistavie).
9+
- Fixed incorrect n-grams computation for more sentences. Thanks to [@odek53r](https://github.com/odek53r).
10+
- Fixed NLTK dependency for Python 3.3. NLTK 3.2 dropped support for Python 3.3 so sumy needs 3.1.
11+
312
## 0.5.1 (2016-11-17)
413
- Fixed missing stopwords in SumBasic summarizer.
514

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.1
2+
current_version = 0.7.0
33
commit = false
44
tag = false
55

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# https://blog.ionelmc.ro/presentations/packaging/
1616
setup(
1717
name="sumy",
18-
version="0.5.1",
18+
version="0.7.0",
1919
description="Module for automatic summarization of text documents and HTML pages.",
2020
long_description=long_description,
2121
author="Michal Belica",
@@ -69,7 +69,7 @@
6969
"Intended Audience :: Education",
7070
"License :: OSI Approved :: Apache Software License",
7171

72-
"Natural Language :: Chinese",
72+
"Natural Language :: Chinese (Simplified)",
7373
"Natural Language :: Czech",
7474
"Natural Language :: English",
7575
"Natural Language :: French",

sumy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66

77
__author__ = "Michal Belica"
8-
__version__ = "0.5.1"
8+
__version__ = "0.7.0"

0 commit comments

Comments
 (0)