From e0788be5af94a136e2c875ffcef3ce7d88108626 Mon Sep 17 00:00:00 2001 From: Diaoul Date: Thu, 23 Jul 2015 00:42:18 +0200 Subject: [PATCH] Release 1.0.1 --- HISTORY.rst | 10 ++++++++++ README.rst | 2 +- subliminal/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 900d197f8..2eb92e989 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,16 @@ Changelog --------- +1.0.1 +^^^^^ +**release date:** 2015-07-23 + +* Fix unicode issues in CLI (python 2 only) +* Fix score scaling in CLI (python 2 only) +* Improve error handling in CLI +* Color collect report in CLI + + 1.0 ^^^ **release date:** 2015-07-22 diff --git a/README.rst b/README.rst index 250227535..cae6d045a 100644 --- a/README.rst +++ b/README.rst @@ -35,7 +35,7 @@ Download English subtitles:: $ subliminal download -l en The.Big.Bang.Theory.S05E18.HDTV.x264-LOL.mp4 Collecting videos [####################################] 100% - 1 video collected / 0 video ignored + 1 video collected / 0 video ignored / 0 error Downloading subtitles [####################################] 100% Downloaded 1 subtitle diff --git a/subliminal/__init__.py b/subliminal/__init__.py index ece91e678..8d779a5f2 100644 --- a/subliminal/__init__.py +++ b/subliminal/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- __title__ = 'subliminal' -__version__ = '1.0.1.dev0' +__version__ = '1.0.1' __author__ = 'Antoine Bertin' __license__ = 'MIT' __copyright__ = 'Copyright 2015, Antoine Bertin'