From 3be1a8c94376c1b9d1561a953aaed89f7a8e3eff Mon Sep 17 00:00:00 2001 From: Carl Chenet Date: Wed, 2 Aug 2017 15:20:12 +0200 Subject: [PATCH] bump version and update documentation --- CHANGELOG | 11 +++++++++++ README.md | 2 +- docs/source/conf.py | 4 ++-- docs/source/configure.rst | 6 +++--- docs/source/install.rst | 2 +- feed2toot/cliparse.py | 2 +- setup.py | 6 +++--- 7 files changed, 22 insertions(+), 11 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a1fc5ac..acf0bed 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +## [0.6] - 2017-08-02 +### Added +- define a name for a feed, accessible with {feedname}. Contributed by Alexis Metaireau. +- switch the toot visibility by The Dod (@thedod) +- new accept_bozo_exceptions option to allow malformed rss feeds. Contributed by Alexis Metaireau. + +### Changed +- configuration parser was split into much smaller chunks +- remove useless imports and coding style. Contributed by Alexis Metaireau. +- rephrasing and reformatting of the script register_feed2toot_app. Contributed by Bastien Guerry. + ## [0.5] - 2017-05-05 ### Added - manage rss feeds entries without id diff --git a/README.md b/README.md index 033adf0..cbe6a16 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.5.tar.gz + # tar zxvf feed2toot-0.6.tar.gz # cd feed2toot # python3 setup.py install # # or diff --git a/docs/source/conf.py b/docs/source/conf.py index 84c7fef..1f0a11a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -54,9 +54,9 @@ copyright = '2017, Carl Chenet ' # built documents. # # The short X.Y version. -version = '1.0' +version = '0.6' # The full version, including alpha/beta/rc tags. -release = '1.0' +release = '0.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/configure.rst b/docs/source/configure.rst index 4c88c7a..ecf2b62 100644 --- a/docs/source/configure.rst +++ b/docs/source/configure.rst @@ -137,9 +137,9 @@ It is possible to get all entries from a rss feed available in the uri_list file In you rsslist.txt, just don't give anything else than the needed feed url to get all the entries:: -https://www.journalduhacker.net/rss|title|hacker,psql -https://carlchenet.com/feed|title|gitlab -https://blog.linuxjobs.fr/feed.php?rss + https://www.journalduhacker.net/rss|title|hacker,psql + https://carlchenet.com/feed|title|gitlab + https://blog.linuxjobs.fr/feed.php?rss The last line of the file above only has the url of a rss feed. All entries from this feed will be tweeted. diff --git a/docs/source/install.rst b/docs/source/install.rst index 260d73b..848dbe4 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.5.tar.gz + $ tar zxvf feed2toot-0.6.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 a67cba3..a71c6d4 100644 --- a/feed2toot/cliparse.py +++ b/feed2toot/cliparse.py @@ -23,7 +23,7 @@ import logging import os.path import sys -__version__ = '0.5' +__version__ = '0.6' class CliParse: '''CliParse class''' diff --git a/setup.py b/setup.py index 6f7c764..4567863 100755 --- a/setup.py +++ b/setup.py @@ -31,10 +31,10 @@ CLASSIFIERS = [ setup( name='feed2toot', - version='0.5', + version='0.6', 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', + description='Parse rss feeds and tweet new posts to Mastodon', + long_description='Parse rss feeds and tweet new posts to the Mastodon social network', author = 'Carl Chenet', author_email = 'chaica@ohmytux.com', url = 'https://gitlab.com/chaica/feed2toot',