Skip to content

Commit 72ab3b5

Browse files
committed
Bump version: 0.2.1 → 0.3.0
1 parent 77c78b8 commit 72ab3b5

5 files changed

Lines changed: 17 additions & 4 deletions

File tree

.bumpversion.cfg

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[nosetests]
2+
with-coverage = 1
3+
cover-package = sumy
4+
cover-erase = 1
5+
6+
[wheel]
7+
universal = 1
8+
9+
[bumpversion]
10+
files = setup.py setup.cfg sumy/__init__.py CHANGELOG.rst
11+
commit = True
12+
tag = True
13+

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Changelog
1111
- Function ``sumy.utils.get_stop_words`` raises ``LookupError`` instead of ``ValueError`` for unknown language.
1212
- Exception ``LookupError`` is raised for unknown language of stemmer instead of falling silently to ``null_stemmer``.
1313

14-
0.2.1 (2014-01-23)
14+
0.3.0 (2014-01-23)
1515
------------------
1616
- Fixed installation of my own readability fork. Added ``breadability`` to the dependencies instead of it `#8 <https://github.com/miso-belica/sumy/issues/8>`_. Thanks to `@pratikpoddar <https://github.com/pratikpoddar>`_.
1717

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cover-erase=1
77
universal=1
88

99
[bumpversion]
10-
current_version=0.2.1
10+
current_version=0.3.0
1111
files=setup.py setup.cfg sumy/__init__.py CHANGELOG.rst
1212
commit=True
1313
tag=True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name="sumy",
21-
version="0.2.1",
21+
version="0.3.0",
2222
description="Module for automatic summarization of text documents and HTML pages.",
2323
long_description=long_description,
2424
author="Michal Belica",

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.2.1"
8+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)