parent
5cbd02aa7d
commit
cd04a0f327
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
include README.md LICENSE changelog.md
|
||||
include README.md LICENSE CHANGELOG.md
|
||||
include test.py
|
||||
include test.torrent
|
||||
|
|
|
@ -44,7 +44,7 @@ __all__ = [
|
|||
'TorrentFileParser',
|
||||
]
|
||||
|
||||
__version__ = '0.1.3'
|
||||
__version__ = '0.1.4'
|
||||
|
||||
|
||||
def detect(content):
|
||||
|
|
Loading…
Reference in New Issue