diff --git a/CHANGELOG.txt b/CHANGELOG.txt index edc4d0b6..a388c4c7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,20 @@ Notable Changes in OpenSlide Python =================================== +Version 0.5.0, 2014-01-25 + * Require OpenSlide 3.4.0 + * Support Python 3 + * Return Unicode strings on Python 2 + * Replace OpenSlide.can_open() with OpenSlide.detect_format() + * Optionally generate Deep Zoom tiles only for the non-empty slide region + * Fix Deep Zoom tile positioning bug affecting Aperio slides + * Fix library loading with MacPorts + * Propagate open errors from openslide.open_slide() + * examples: Add multiple-slide Deep Zoom server + * examples: Enable multithreading in tile servers + * examples: Avoid loading smallest Deep Zoom levels + * examples: Update OpenSeadragon to 1.0.0 + Version 0.4.0, 2012-09-08 * Require OpenSlide 3.3.0 * Rename "layer" to "level" throughout API diff --git a/openslide/_version.py b/openslide/_version.py index 2187f43d..647b393a 100644 --- a/openslide/_version.py +++ b/openslide/_version.py @@ -22,4 +22,4 @@ This module is an implementation detail. The package version should be obtained from openslide.__version__.""" -__version__ = u'0.4.0' +__version__ = u'0.5.0'