diff --git a/CHANGES.txt b/CHANGES.txt index 401f49b..11a756d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,4 @@ +v0.2.0, 2016-03-09 -- Remove ujson for json v0.1.13, 2016-02-09 -- Add py3.4 and py3.5 to tests. Deploy on pypi via travis. v0.1.11, 2013-08-24 -- Add documentation and switch to pytest. v0.1.10, 2013-06-23 -- Fixed for pip install. diff --git a/docs/conf.py b/docs/conf.py index 902fe3c..5a0aabc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,7 +48,7 @@ # built documents. # # The short X.Y version. -version = '0.1.13' +version = '0.2.0' # The full version, including alpha/beta/rc tags. release = '' diff --git a/random_words/__init__.py b/random_words/__init__.py index 54219d6..6dd8d5f 100644 --- a/random_words/__init__.py +++ b/random_words/__init__.py @@ -7,7 +7,7 @@ .. moduleauthor:: Tomek Święcicki """ -__version__ = '0.1.13' +__version__ = '0.2.0' from .random_words import RandomWords from .random_words import RandomNicknames diff --git a/setup.py b/setup.py index 289d3a5..6d70d12 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def run_tests(self): setup( name='RandomWords', - version='0.1.13', + version='0.2.0', author='Tomek Święcicki', author_email='tomislater@gmail.com', packages=['random_words'],