mirror of https://gitlab.com/chaica/feed2toot
update CHANGELOG and bump version
This commit is contained in:
parent
f47618dfe2
commit
b4ab6a84b6
|
@ -1,8 +1,16 @@
|
||||||
|
## [0.13] - 2019-12-27
|
||||||
|
### Added
|
||||||
|
- new cli option --ignore-ssl and parameter ignore_ssl to ignore ssl error in the rss feeds
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- delete the lock file when using --rss-sections cli option
|
||||||
|
|
||||||
## [0.12] - 2019-08-27
|
## [0.12] - 2019-08-27
|
||||||
### Changed
|
### Changed
|
||||||
- simplify code, mostly in the main function
|
- simplify code, mostly in the main function
|
||||||
- fix a bug when title_pattern is used and *_pattern_case_sensitive is not defined
|
- fix a bug when title_pattern is used and *_pattern_case_sensitive is not defined
|
||||||
|
|
||||||
|
|
||||||
## [0.11] - 2019-08-24
|
## [0.11] - 2019-08-24
|
||||||
### Added
|
### Added
|
||||||
- MAJOR CHANGE: command line options --lockfile to define a lock file
|
- MAJOR CHANGE: command line options --lockfile to define a lock file
|
||||||
|
|
|
@ -20,7 +20,7 @@ Alternatively you can donate cryptocurrencies:
|
||||||
[Installation Guide](http://feed2toot.readthedocs.io/en/latest/install.html)*
|
[Installation Guide](http://feed2toot.readthedocs.io/en/latest/install.html)*
|
||||||
|
|
||||||
|
|
||||||
# tar zxvf feed2toot-0.12.tar.gz
|
# tar zxvf feed2toot-0.13.tar.gz
|
||||||
# cd feed2toot
|
# cd feed2toot
|
||||||
# python3 setup.py install
|
# python3 setup.py install
|
||||||
# # or
|
# # or
|
||||||
|
|
|
@ -54,9 +54,9 @@ copyright = '2015-2019, Carl Chenet <chaica@ohmytux.com>'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.12'
|
version = '0.13'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.12'
|
release = '0.13'
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
|
@ -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.12.tar.gz
|
$ tar zxvf feed2toot-0.13.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::
|
||||||
|
|
|
@ -24,7 +24,7 @@ import os
|
||||||
import os.path
|
import os.path
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
__version__ = '0.12'
|
__version__ = '0.13'
|
||||||
|
|
||||||
class CliParse:
|
class CliParse:
|
||||||
'''CliParse class'''
|
'''CliParse class'''
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -31,7 +31,7 @@ CLASSIFIERS = [
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='feed2toot',
|
name='feed2toot',
|
||||||
version='0.12',
|
version='0.13',
|
||||||
license='GNU GPL v3',
|
license='GNU GPL v3',
|
||||||
description='Parse rss feeds and send new posts to Mastodon',
|
description='Parse rss feeds and send new posts to Mastodon',
|
||||||
long_description='Parse rss feeds and send new posts to the Mastodon social network',
|
long_description='Parse rss feeds and send new posts to the Mastodon social network',
|
||||||
|
|
Loading…
Reference in New Issue