Skip to content

Commit

Permalink
BLD Release version 0.5
Browse files Browse the repository at this point in the history
Fixing webp and improving installation (by automatically detecting it
and gracefully degrading if not found) are reasons enough to release a
new version. Because of the magic-number detection, it is better to
increase the version number.

Full ChangeLog:
    * Add magic-number based format auto-detection
    * Auto detect whether webp is installed
    * Fix WebP reading (update to newer API)
  • Loading branch information
luispedro committed Oct 16, 2014
1 parent d5d6691 commit 2cfc298
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,4 +1,4 @@
Version 0.4+
Version 0.5 2014-10-16 by luispedro
* Add magic-number based format auto-detection
* Auto detect whether webp is installed
* Fix WebP reading (update to newer API)
Expand Down
15 changes: 11 additions & 4 deletions README.rst
Expand Up @@ -104,14 +104,21 @@ Travis Build Status
.. image:: https://travis-ci.org/luispedro/imread.png
:target: https://travis-ci.org/luispedro/imread

Python versions 2.6, 2.7 and 3.3 are officially supported.
Python versions 2.6, 2.7, 3.3, and 3.4 are officially supported.

Python 3.4 should also work (submit a bug report if it does not). Python 3.2
(and earlier versions in the Python 3 series) are officially **not supported**.
Python 3.2 (and earlier versions in the Python 3 series) are officially **not
supported**. Patches will be accepted if they do not mess up anything else, but
bug reports will not be considered.

History
~~~~~~~

Version 0.5 (2014-10-16)
------------------------
- Add magic-number based format auto-detection
- Auto detect whether webp is installed
- Fix WebP reading (update to newer API)

Version 0.4 (2014-07-21)
------------------------
- Add configuration for TIFF saving
Expand Down Expand Up @@ -155,7 +162,7 @@ Version 0.2.5 (2012-10-29)
- More complete debug mode (export DEBUG=2 when building), more checks

Version 0.2.4 (2012-06-26)
-------------------------
--------------------------
- Add lzw.cpp to source distribution
- Support saving 16-bit TIFF
- Better Mac OS support (patch from Alexander Bohn)
Expand Down
9 changes: 7 additions & 2 deletions docs/source/history.rst
Expand Up @@ -2,14 +2,19 @@
History
=======

Version 0.5 (2014-10-16)
------------------------
- Add magic-number based format auto-detection
- Auto detect whether webp is installed
- Fix WebP reading (update to newer API)


Version 0.4 (2014-07-21)
------------------------
- Add configuration for TIFF saving
- Correctly save 16 bit PNG images
- Better error messages for JPEG



Version 0.3.2 (2013-10-06)
--------------------------
- Added imload*/imwrite synonyms as suggested by Thouis (Ray) Jones
Expand Down
2 changes: 1 addition & 1 deletion imread/imread_version.py
@@ -1 +1 @@
__version__ = '0.4+git'
__version__ = '0.5'

0 comments on commit 2cfc298

Please sign in to comment.