bump version and update documentation
This commit is contained in:
parent
23b6beee20
commit
3be1a8c943
11
CHANGELOG
11
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -54,9 +54,9 @@ copyright = '2017, Carl Chenet <chaica@ohmytux.com>'
|
|||
# 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.
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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::
|
||||
|
|
|
@ -23,7 +23,7 @@ import logging
|
|||
import os.path
|
||||
import sys
|
||||
|
||||
__version__ = '0.5'
|
||||
__version__ = '0.6'
|
||||
|
||||
class CliParse:
|
||||
'''CliParse class'''
|
||||
|
|
6
setup.py
6
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',
|
||||
|
|
Loading…
Reference in a new issue