From 4602d4d9dc4c33ecee8e7b0e571bb216daf54d72 Mon Sep 17 00:00:00 2001 From: Carl Chenet Date: Tue, 31 Dec 2019 12:35:00 +0100 Subject: [PATCH] bump version and update CHANGELOG --- CHANGELOG | 6 ++++++ README.md | 2 +- docs/source/conf.py | 4 ++-- docs/source/install.rst | 2 +- feed2toot/cliparse.py | 2 +- setup.py | 2 +- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7c945d4..6151a87 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +## [0.14] - 2019-12-31 +### Added +- support for line breaks in toots +- new configuration parameter toot_max_len to define the maximum length of a toot +- new configuration parameter no_tags_in_toot to stop hash tags to be added in toots + ## [0.13] - 2019-12-27 ### Added - new cli option --ignore-ssl and parameter ignore_ssl to ignore ssl error in the rss feeds diff --git a/README.md b/README.md index 25ea89e..0eb8e1a 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Alternatively you can donate cryptocurrencies: [Installation Guide](http://feed2toot.readthedocs.io/en/latest/install.html)* - # tar zxvf feed2toot-0.13.tar.gz + # tar zxvf feed2toot-0.14.tar.gz # cd feed2toot # python3 setup.py install # # or diff --git a/docs/source/conf.py b/docs/source/conf.py index 01634bd..2d1153a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -54,9 +54,9 @@ copyright = '2015-2019, Carl Chenet ' # built documents. # # The short X.Y version. -version = '0.13' +version = '0.14' # The full version, including alpha/beta/rc tags. -release = '0.13' +release = '0.14' # 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 6fd1624..7716a2a 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.13.tar.gz + $ tar zxvf feed2toot-0.14.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 790f2e2..ac397ff 100644 --- a/feed2toot/cliparse.py +++ b/feed2toot/cliparse.py @@ -24,7 +24,7 @@ import os import os.path import sys -__version__ = '0.13' +__version__ = '0.14' class CliParse: '''CliParse class''' diff --git a/setup.py b/setup.py index 2cb1511..0e45678 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ CLASSIFIERS = [ setup( name='feed2toot', - version='0.13', + version='0.14', 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',