diff --git a/CHANGELOG.md b/CHANGELOG.md index 86e4501..4f52c81 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.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 \ No newline at end of file +[0.1.0]: https://github.com/7sDream/torrent_parser/tree/v0.1.0 diff --git a/MANIFEST.in b/MANIFEST.in index 13a538d..a51d5d3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ -include README.md LICENSE changelog.md +include README.md LICENSE CHANGELOG.md include test.py include test.torrent diff --git a/torrent_parser.py b/torrent_parser.py index 392f2ab..c9a4f4e 100644 --- a/torrent_parser.py +++ b/torrent_parser.py @@ -44,7 +44,7 @@ __all__ = [ 'TorrentFileParser', ] -__version__ = '0.1.3' +__version__ = '0.1.4' def detect(content):