From 550c475bfcc0976e62443ee62c20a4f942b570c9 Mon Sep 17 00:00:00 2001 From: 7sDream <7seconddream@gmail.com> Date: Sun, 29 Apr 2018 00:14:54 +0800 Subject: [PATCH] update to v0.1.5rc1 --- CHANGELOG.md | 5 ++++- README.md | 2 +- setup.py | 2 +- torrent_parser.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d992e3d..f3b20fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.1.5rc1] - 2018.4.28 + ### Added - `TorrentFileCreator` class and `create_torrent_file` shortcut function for write back data to a torrent file @@ -67,7 +69,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Available on pip. [@ltfychrise]: https://github.com/ltfychrise -[Unreleased]: https://github.com/7sDream/torrent_parser/compare/v0.1.4...HEAD +[Unreleased]: https://github.com/7sDream/torrent_parser/compare/v0.1.5rc1...HEAD +[0.1.5rc1]: https://github.com/7sDream/torrent_parser/compare/v0.1.4...v0.1.5rc1 [0.1.4]: https://github.com/7sDream/torrent_parser/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/7sDream/torrent_parser/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/7sDream/torrent_parser/compare/v0.1.1...v0.1.2 diff --git a/README.md b/README.md index 1fbbda6..cfc04a9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Torrent file parser for Python +# Torrent file parser and creator for Python A simple parser for `.torrent` file. diff --git a/setup.py b/setup.py index 0e625b7..2dc33dd 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( license='MIT', author='7sDream', author_email='7seconddream@gmail.com', - description='A .torrent file parser for both Python 2 and 3', + description='A .torrent file parser and creator for both Python 2 and 3', install_requires=[], entry_points={ 'console_scripts': ['pytp=torrent_parser:__main'] diff --git a/torrent_parser.py b/torrent_parser.py index 872e22f..23eb190 100644 --- a/torrent_parser.py +++ b/torrent_parser.py @@ -69,7 +69,7 @@ __all__ = [ 'TorrentFileParser', ] -__version__ = '0.1.4' +__version__ = '0.1.5rc1' def detect(content):