update to version 0.1.4

dev v0.1.4
7sDream 2018-04-06 13:58:53 +08:00
parent 5cbd02aa7d
commit cd04a0f327
No known key found for this signature in database
GPG Key ID: 72A6D9FCEDDAB75D
3 changed files with 6 additions and 3 deletions

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
## [0.1.4] - 2018-04-06
### Added
- `encoding` option can be `auto`, which will use `chardet` package to decide which encoding to use. If `chardet` is noe installed, will raise a warning and fallback to 'utf-8'. (Thanks to [@ltfychrise])
@ -62,7 +64,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[@ltfychrise]: https://github.com/ltfychrise
[Unreleased]: https://github.com/7sDream/torrent_parser/compare/v0.1.3...HEAD
[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
[0.1.1]: https://github.com/7sDream/torrent_parser/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/7sDream/torrent_parser/tree/v0.1.0
[0.1.0]: https://github.com/7sDream/torrent_parser/tree/v0.1.0

View File

@ -1,3 +1,3 @@
include README.md LICENSE changelog.md
include README.md LICENSE CHANGELOG.md
include test.py
include test.torrent

View File

@ -44,7 +44,7 @@ __all__ = [
'TorrentFileParser',
]
__version__ = '0.1.3'
__version__ = '0.1.4'
def detect(content):