diff --git a/DEPENDS.txt b/DEPENDS.txt index c4cc8679..152e935b 100644 --- a/DEPENDS.txt +++ b/DEPENDS.txt @@ -47,7 +47,7 @@ functionality is only available with the following installed: walker segmentation. * `Pillow `__ - (or <`PIL http://www.pythonware.com/products/pil/>`__) + (or `PIL `__) The ``Pillow`` library (or equivalently ``PIL``) is used for Input/Output. * `Astropy `__ is required to use the FITS io plug-in. diff --git a/MANIFEST.in b/MANIFEST.in index 4f6786be..1a059991 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,7 +3,7 @@ include setup*.py include MANIFEST.in include *.txt include Makefile -recursive-include skimage *.pyx *.pxd *.pxi *.py *.c *.h *.ini *.md5 +recursive-include skimage *.pyx *.pxd *.pxi *.py *.c *.h *.ini *.md5 *.npy *.txt recursive-include skimage/data * include doc/Makefile diff --git a/bento.info b/bento.info index 18310623..99790855 100644 --- a/bento.info +++ b/bento.info @@ -1,5 +1,5 @@ Name: scikit-image -Version: 0.10.0 +Version: 0.10.1 Summary: Image processing routines for SciPy Url: http://scikit-image.org DownloadUrl: http://github.com/scikit-image/scikit-image diff --git a/doc/release/release_0.10.txt b/doc/release/release_0.10.txt new file mode 100644 index 00000000..e2c3b34d --- /dev/null +++ b/doc/release/release_0.10.txt @@ -0,0 +1,103 @@ +Announcement: scikit-image 0.10.0 +================================= + +We're happy to announce the release of scikit-image v0.10.0! + +scikit-image is an image processing toolbox for SciPy that includes algorithms +for segmentation, geometric transformations, color space manipulation, +analysis, filtering, morphology, feature detection, and more. + +For more information, examples, and documentation, please visit our website: + + http://scikit-image.org + + +New Features +------------ + +In addition to many bug fixes, (speed) improvements and new examples, the 118 +pull requests (1112 commits) merged for this release include the following new +or improved features (PR number in brackets): + +- BRIEF, ORB and CENSURE features (#834) +- Blob Detection (#903) +- Phase unwrapping (#644) +- Wiener deconvolution (#800) +- IPython notebooks in examples gallery (#1000) +- Luv colorspace conversion (#798) +- Viewer overlays (#810) +- ISODATA thresholding (#859) +- A new rank filter for summation (#844) +- Faster MCP with anisotropy support (#854) +- N-d peak finding (`peak_local_max`) (#906) +- `imread_collection` support for all plugins (#862) +- Enforce SLIC superpixels connectivity and add SLIC-zero (#857, #864) +- Correct mesh orientation (for use in external visualizers) in + marching cubes algorithm (#882) +- Loading from URL and alpha support in novice module (#916, #946) +- Equality for regionprops (#956) + + +API changes +----------- + +The following backward-incompatible API changes were made between 0.9 and 0.10: + +- Removed deprecated functions in `skimage.filter.rank.*` +- Removed deprecated parameter `epsilon` of `skimage.viewer.LineProfile` +- Removed backwards-compatability of `skimage.measure.regionprops` +- Removed {`ratio`, `sigma`} deprecation warnings of `skimage.segmentation.slic` + and also remove explicit `sigma` parameter from doc-string example +- Changed default mode of random_walker segmentation to 'cg_mg' > 'cg' > 'bf', + depending on which optional dependencies are available. +- Removed deprecated `out` parameter of `skimage.morphology.binary_*` +- Removed deprecated parameter `depth` in `skimage.segmentation.random_walker` +- Removed deprecated logger function in `skimage/__init__.py` +- Removed deprecated function `filter.median_filter` +- Removed deprecated `skimage.color.is_gray` and `skimage.color.is_rgb` + functions +- Removed deprecated `skimage.segmentation.visualize_boundaries` +- Removed deprecated `skimage.morphology.greyscale_*` +- Removed deprecated `skimage.exposure.equalize` + + +Contributors to this release +---------------------------- + +This release was made possible by the collaborative efforts of many +contributors, both new and old. They are listed in alphabetical order by +surname: + +- Raphael Ackermann +- Ankit Agrawal +- Maximilian Albert +- Pietro Berkes +- Vighnesh Birodkar +- François Boulogne +- Olivier Debeir +- Christoph Deil +- Jaidev Deshpande +- Jaime Frio +- Jostein Bø Fløystad +- Neeraj Gangwar +- Christopher Gohlke +- Michael Hansen +- Almar Klein +- Jeremy Metz +- Juan Nunez-Iglesias +- François Orieux +- Guillem Palou +- Rishabh Raj +- Thomas Robitaille +- Michal Romaniuk +- Johannes L. Schönberger +- Steven Sylvester +- Julian Taylor +- Gregor Thalhammer +- Matthew Trentacoste +- Siva Prasad Varma +- Guillem Palou Visa +- Stefan van der Walt +- Josh Warner +- Tony S Yu +- radioxoma diff --git a/setup.py b/setup.py index 68cbec22..7a0dad7a 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ MAINTAINER_EMAIL = 'stefan@sun.ac.za' URL = 'http://scikit-image.org' LICENSE = 'Modified BSD' DOWNLOAD_URL = 'http://github.com/scikit-image/scikit-image' -VERSION = '0.10.0' +VERSION = '0.10.1' PYTHON_VERSION = (2, 5) DEPENDENCIES = { 'numpy': (1, 6),