diff --git a/README.md b/README.md index b7d3d1a..f2db555 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.1.tar.gz + # tar zxvf feed2toot-0.2.tar.gz # cd feed2toot # python3 setup.py install # # or diff --git a/docs/source/configure.rst b/docs/source/configure.rst index 1d4a657..573f14f 100644 --- a/docs/source/configure.rst +++ b/docs/source/configure.rst @@ -70,7 +70,7 @@ List of rss feeds ================= Simple list of rss feeds ------------------------ -With the parameter **uri_list**, you can define a list of uri to use. Starting from 0.10, Feed2toot is now able to match specific patterns for each of the rss feeds from this list. Consider the following rss section of the configuration file:: +With the parameter **uri_list**, you can define a list of uri to use. Feed2toot is able to match specific patterns for each of the rss feeds from this list. Consider the following rss section of the configuration file:: [rss] uri_list=/home/john/feed2toot/rsslist.txt diff --git a/docs/source/install.rst b/docs/source/install.rst index f75cc9c..4340c9f 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.1.tar.gz + $ tar zxvf feed2toot-0.2.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 39f6f1f..445ecf4 100644 --- a/feed2toot/cliparse.py +++ b/feed2toot/cliparse.py @@ -23,7 +23,7 @@ import logging import os.path import sys -__version__ = '0.1' +__version__ = '0.2' class CliParse(object): '''CliParse class''' diff --git a/setup.py b/setup.py index 34765f1..710c458 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ CLASSIFIERS = [ setup( name='feed2toot', - version='0.1', + version='0.2', 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',