diff --git a/CHANGELOG b/CHANGELOG index 6e16941..6431e4a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +## [0.4] - 2017-04-27 +### Changed +- [hashtaglist] section is not mandatory any more +- bugfixes + ## [0.3] - 2017-04-12 ### Changed - remove persistentlist dependency because unstable and use own cache storage diff --git a/README.md b/README.md index 13a20bc..b8caf89 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Alternatively you can donate cryptocurrencies: [Installation Guide](http://feed2toot.readthedocs.org/en/latest/install.html)* - # tar zxvf feed2toot-0.3.tar.gz + # tar zxvf feed2toot-0.4.tar.gz # cd feed2toot # python3 setup.py install # # or diff --git a/docs/source/install.rst b/docs/source/install.rst index 86084a0..2339768 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -25,7 +25,7 @@ Alternatively, Setuptools may be installed to a user-local path:: * Untar the tarball and go to the source directory with the following commands:: - $ tar zxvf feed2toot-0.3.tar.gz + $ tar zxvf feed2toot-0.4.tar.gz $ cd feed2toot * Next, to install Feed2toot on your computer, type the following command with the root user:: diff --git a/feed2toot/cliparse.py b/feed2toot/cliparse.py index eca52f4..431cd71 100644 --- a/feed2toot/cliparse.py +++ b/feed2toot/cliparse.py @@ -23,7 +23,7 @@ import logging import os.path import sys -__version__ = '0.3' +__version__ = '0.4' class CliParse(object): '''CliParse class''' diff --git a/setup.py b/setup.py index 2670631..5ea1002 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ CLASSIFIERS = [ setup( name='feed2toot', - version='0.3', + version='0.4', license='GNU GPL v3', description='Parse rss feed and tweet new posts to Mastodon', long_description='Parse rss feed and tweet new posts to the Mastodon social network',