From 2a4eecb83081154e4a0341633ab05f65a7aa7575 Mon Sep 17 00:00:00 2001 From: 7sDream <7seconddream@gmail.com> Date: Sat, 23 Jun 2018 13:18:00 +0800 Subject: [PATCH] release version 0.3.0 --- CHANGELOG.md | 8 +++++--- torrent_parser.py | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26ed202..cd68817 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.3.0] - 2018.06.23 ### Added -- Add `errors` option in `TorrentFileParser` and `parse_torrent_file` to let user set the encoding error handler. (Thanks [@yasuotakei](https://github.com/yasuotakei)) +- Add `errors` option in `TorrentFileParser` and `parse_torrent_file` to let user set the encoding error handler. (Thanks [@yasuotakei]) - Add `-e`/`--error` to CLI option to set the `errors` option of `parse_torrent_file`. - `BDecoder` class and `decode` shortcut function to directly decode bytes. - `decode` shortcut function to directly encode data to bytes. @@ -91,7 +91,9 @@ 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.2.0...HEAD +[@yasuotakei]: https://github.com/yasuotakei +[Unreleased]: https://github.com/7sDream/torrent_parser/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/7sDream/torrent_parser/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/7sDream/torrent_parser/compare/v0.1.5rc1...v0.2.0 [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 diff --git a/torrent_parser.py b/torrent_parser.py index 99436c2..bf1894b 100755 --- a/torrent_parser.py +++ b/torrent_parser.py @@ -77,7 +77,7 @@ __all__ = [ 'parse_torrent_file', ] -__version__ = '0.2.0' +__version__ = '0.3.0' def detect(content):