From d1dda96fe36f3e9c7d64793ece18cbdb8ca8940a Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Wed, 21 Sep 2016 10:37:35 +0200 Subject: [PATCH] BLD Release 0.6 Full ChangeLog * Add `supports_format` function * Make png compression level tunable when calling imsave * Add imsave_multi * Add partial support for reading PNG files in Gray+alpha format --- ChangeLog | 2 +- README.rst | 8 ++++++++ docs/source/conf.py | 2 +- docs/source/history.rst | 8 ++++++++ imread/imread_version.py | 2 +- 5 files changed, 19 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3a90026..f7f26be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -Version 0.5.1+ +Version 0.6 2016-09-21 by luispedro * Add `supports_format` function * Make png compression level tunable when calling imsave * Add imsave_multi diff --git a/README.rst b/README.rst index 74e4401..4f46f5c 100644 --- a/README.rst +++ b/README.rst @@ -122,6 +122,14 @@ bug reports will not be considered as very high priority. History ~~~~~~~ +Version 0.6 (2016-09-21) +-------------------------- +- Add `supports_format` function +- Make png compression level tunable when calling imsave +- Add imsave_multi +- Add partial support for reading PNG files in Gray+alpha format + + Version 0.5.1 (2014-11-06) -------------------------- - Improve tests to work after installation diff --git a/docs/source/conf.py b/docs/source/conf.py index dcc054c..73f583b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -14,7 +14,7 @@ # from imread import __version__ as imread_version -imread_version = '0.5.1+git' +imread_version = '0.6' import sys, os # If extensions (or modules to document with autodoc) are in another directory, diff --git a/docs/source/history.rst b/docs/source/history.rst index 2285ced..2553f06 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -2,6 +2,14 @@ History ======= +Version 0.6 (2016-09-21) +-------------------------- +- Add `supports_format` function +- Make png compression level tunable when calling imsave +- Add imsave_multi +- Add partial support for reading PNG files in Gray+alpha format + + Version 0.5.1 (2014-11-06) -------------------------- - Improve tests to work after installation diff --git a/imread/imread_version.py b/imread/imread_version.py index 139a336..27fda16 100644 --- a/imread/imread_version.py +++ b/imread/imread_version.py @@ -1 +1 @@ -__version__ = '0.5.1+git' +__version__ = '0.6'