bump version
This commit is contained in:
parent
dffd5c8c36
commit
2f000b7cec
|
@ -1,3 +1,7 @@
|
||||||
|
## [0.3] - 2017-04-12
|
||||||
|
### Changed
|
||||||
|
- remove persistentlist dependency because unstable and use own cache storage
|
||||||
|
|
||||||
## [0.2] - 2017-04-11
|
## [0.2] - 2017-04-11
|
||||||
### Changed
|
### Changed
|
||||||
- register_feed2toot_app now able to generate credentials for any instance
|
- register_feed2toot_app now able to generate credentials for any instance
|
||||||
|
|
|
@ -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.2.tar.gz
|
# tar zxvf feed2toot-0.3.tar.gz
|
||||||
# cd feed2toot
|
# cd feed2toot
|
||||||
# python3 setup.py install
|
# python3 setup.py install
|
||||||
# # or
|
# # or
|
||||||
|
|
|
@ -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.2.tar.gz
|
$ tar zxvf feed2toot-0.3.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::
|
||||||
|
|
|
@ -23,7 +23,7 @@ import logging
|
||||||
import os.path
|
import os.path
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
__version__ = '0.2'
|
__version__ = '0.3'
|
||||||
|
|
||||||
class CliParse(object):
|
class CliParse(object):
|
||||||
'''CliParse class'''
|
'''CliParse class'''
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -31,7 +31,7 @@ CLASSIFIERS = [
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='feed2toot',
|
name='feed2toot',
|
||||||
version='0.2',
|
version='0.3',
|
||||||
license='GNU GPL v3',
|
license='GNU GPL v3',
|
||||||
description='Parse rss feed and tweet new posts to Mastodon',
|
description='Parse rss feed and tweet new posts to Mastodon',
|
||||||
long_description='Parse rss feed and tweet new posts to the Mastodon social network',
|
long_description='Parse rss feed and tweet new posts to the Mastodon social network',
|
||||||
|
|
Loading…
Reference in a new issue