From 1741b5321e17cec9d2d3c66e3188093795e1727c Mon Sep 17 00:00:00 2001 From: Carl Chenet Date: Thu, 7 Jun 2018 00:34:49 +0200 Subject: [PATCH] update changelog and bump version --- CHANGELOG | 4 ++++ README.md | 2 +- docs/source/conf.py | 4 ++-- docs/source/install.rst | 2 +- feed2toot/cliparse.py | 2 +- setup.py | 4 ++-- 6 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 87edf46..bc29821 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +## [0.9] - 2018-06-07 +### Added +- remove html characters from toots. Contributed by Matthew Lorentz and Simounet + ## [0.8] - 2018-05-30 ### Added - add the custom parameter in [media] section to join a custom media with every toots diff --git a/README.md b/README.md index f468e58..366167c 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.8.tar.gz + # tar zxvf feed2toot-0.9.tar.gz # cd feed2toot # python3 setup.py install # # or diff --git a/docs/source/conf.py b/docs/source/conf.py index 1f0a11a..4cd8695 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 = '0.6' +version = '0.9' # The full version, including alpha/beta/rc tags. -release = '0.6' +release = '0.9' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/install.rst b/docs/source/install.rst index 966a647..cab5edf 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.8.tar.gz + $ tar zxvf feed2toot-0.9.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 e196382..f25dcf7 100644 --- a/feed2toot/cliparse.py +++ b/feed2toot/cliparse.py @@ -24,7 +24,7 @@ import os import os.path import sys -__version__ = '0.8' +__version__ = '0.9' class CliParse: '''CliParse class''' diff --git a/setup.py b/setup.py index dafcdd4..a270ea0 100755 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ CLASSIFIERS = [ setup( name='feed2toot', - version='0.8', + version='0.9', license='GNU GPL v3', description='Parse rss feeds and send new posts to Mastodon', long_description='Parse rss feeds and send new posts to the Mastodon social network', @@ -41,7 +41,7 @@ setup( download_url='https://gitlab.com/chaica/feed2toot', packages=find_packages(), scripts=['scripts/feed2toot', 'scripts/register_feed2toot_app'], - install_requires=['feedparser', 'Mastodon.py'], + install_requires=['beautifulsoup4', 'feedparser', 'Mastodon.py'], extras_require={ 'influxdb': ["influxdb"] }