bump version and update documentation

This commit is contained in:
Carl Chenet 2017-08-02 15:20:12 +02:00
parent 23b6beee20
commit 3be1a8c943
7 changed files with 22 additions and 11 deletions

View file

@ -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 ## [0.5] - 2017-05-05
### Added ### Added
- manage rss feeds entries without id - manage rss feeds entries without id

View file

@ -20,7 +20,7 @@ Alternatively you can donate cryptocurrencies:
[Installation Guide](http://feed2toot.readthedocs.org/en/latest/install.html)* [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 # cd feed2toot
# python3 setup.py install # python3 setup.py install
# # or # # or

View file

@ -54,9 +54,9 @@ copyright = '2017, Carl Chenet <chaica@ohmytux.com>'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '1.0' version = '0.6'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '1.0' release = '0.6'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View file

@ -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:: 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://www.journalduhacker.net/rss|title|hacker,psql
https://carlchenet.com/feed|title|gitlab https://carlchenet.com/feed|title|gitlab
https://blog.linuxjobs.fr/feed.php?rss 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. The last line of the file above only has the url of a rss feed. All entries from this feed will be tweeted.

View file

@ -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:: * 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 $ cd feed2toot
* Next, to install Feed2toot on your computer, type the following command with the root user:: * Next, to install Feed2toot on your computer, type the following command with the root user::

View file

@ -23,7 +23,7 @@ import logging
import os.path import os.path
import sys import sys
__version__ = '0.5' __version__ = '0.6'
class CliParse: class CliParse:
'''CliParse class''' '''CliParse class'''

View file

@ -31,10 +31,10 @@ CLASSIFIERS = [
setup( setup(
name='feed2toot', name='feed2toot',
version='0.5', version='0.6',
license='GNU GPL v3', license='GNU GPL v3',
description='Parse rss feed and tweet new posts to Mastodon', description='Parse rss feeds and tweet new posts to Mastodon',
long_description='Parse rss feed and tweet new posts to the Mastodon social network', long_description='Parse rss feeds and tweet new posts to the Mastodon social network',
author = 'Carl Chenet', author = 'Carl Chenet',
author_email = 'chaica@ohmytux.com', author_email = 'chaica@ohmytux.com',
url = 'https://gitlab.com/chaica/feed2toot', url = 'https://gitlab.com/chaica/feed2toot',