From eba0e6920ed27127c9d3d4c1f185c40774bb982d Mon Sep 17 00:00:00 2001 From: Mi??o Belica Date: Thu, 17 Nov 2016 12:40:14 +0100 Subject: [PATCH] Bump 0.5.0 -> 0.5.1 --- CHANGELOG.md | 3 +++ setup.cfg | 2 +- setup.py | 2 +- sumy/__init__.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fefdb6e6..29602ec3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.5.1 (2016-11-17) +- Fixed missing stopwords in SumBasic summarizer. + ## 0.5.0 (2016-11-12) - Added "--text" CLI parameter to summarize text in Emacs and other tools. Thanks to [@FrancisMurillo](https://github.com/FrancisMurillo). - Fixed computation of cosine similarity in LexRank summarizator. diff --git a/setup.cfg b/setup.cfg index 8f61e749..2d67929f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1 commit = false tag = false diff --git a/setup.py b/setup.py index 45c81301..dce3d83d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name="sumy", - version="0.5.0", + version="0.5.1", description="Module for automatic summarization of text documents and HTML pages.", long_description=long_description, author="Michal Belica", diff --git a/sumy/__init__.py b/sumy/__init__.py index 9c9080db..841517d5 100644 --- a/sumy/__init__.py +++ b/sumy/__init__.py @@ -5,4 +5,4 @@ __author__ = "Michal Belica" -__version__ = "0.5.0" +__version__ = "0.5.1"