update to v0.1.5rc1

dev v0.1.5rc1
7sDream 2018-04-29 00:14:54 +08:00
parent cb06fe00d8
commit 550c475bfc
No known key found for this signature in database
GPG Key ID: 72A6D9FCEDDAB75D
4 changed files with 7 additions and 4 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
# Torrent file parser for Python
# Torrent file parser and creator for Python
A simple parser for `.torrent` file.

View File

@ -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']

View File

@ -69,7 +69,7 @@ __all__ = [
'TorrentFileParser',
]
__version__ = '0.1.4'
__version__ = '0.1.5rc1'
def detect(content):