Skip to content

Commit

Permalink
Version 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kz26 committed Mar 20, 2017
1 parent 5e04e6d commit d6ed48b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.9.1
-----
* Fix unreferenced piece size error in CLI

1.9.0
-----
* Increase MAX_PIECE_SIZE to 64 MiB
Expand Down
2 changes: 2 additions & 0 deletions dottorrent/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ def main():
piece_size = int(args.piece_size)
else:
piece_size = parse_size(args.piece_size, binary=True)
else:
piece_size = None

if args.date:
if args.date.isdigit():
Expand Down
2 changes: 1 addition & 1 deletion dottorrent/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.9.0'
__version__ = '1.9.1'

0 comments on commit d6ed48b

Please sign in to comment.