From f7fb79b3d0fea2ab2868b2af7751cfb20e487731 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Sat, 19 Oct 2013 17:13:57 +0200 Subject: [PATCH 1/4] Get rid of that inherited 's' once and for all. --- doc/release/release_0.9.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/release/release_0.9.txt b/doc/release/release_0.9.txt index 1b6d890a..a064ba2c 100644 --- a/doc/release/release_0.9.txt +++ b/doc/release/release_0.9.txt @@ -1,5 +1,5 @@ -Announcement: scikits-image 0.9.0 -================================= +Announcement: scikit-image 0.9.0 +================================ We're happy to announce the release of scikit-image v0.9.0! From 26bbab96fee762b34811322dc52cd1f893acae5f Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Sat, 19 Oct 2013 16:18:12 +0200 Subject: [PATCH 2/4] Update manifest not to include gh-pages in docs. --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 97fedda6..4f6786be 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,3 +12,4 @@ recursive-include doc/tools *.txt recursive-include doc/source/_templates *.html recursive-include doc *.py prune doc/build +prune doc/gh-pages From 9b618a14e7f36dc2f015e32ec0c16b637e2b0d7e Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Sat, 19 Oct 2013 19:15:51 +0200 Subject: [PATCH 3/4] Add missing files to MANIFEST for sdist upload. --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 4f6786be..a2ef2eaf 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 *.rst *.txt recursive-include skimage/data * include doc/Makefile From edbacd1cc873b142073447157596f0d7f2c56e56 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Sat, 19 Oct 2013 19:16:11 +0200 Subject: [PATCH 4/4] Set version to 0.9.1. --- bento.info | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bento.info b/bento.info index 2c39b71a..4e001fc7 100644 --- a/bento.info +++ b/bento.info @@ -1,5 +1,5 @@ Name: scikit-image -Version: 0.9.0 +Version: 0.9.1 Summary: Image processing routines for SciPy Url: http://scikit-image.org DownloadUrl: http://github.com/scikit-image/scikit-image diff --git a/setup.py b/setup.py index 87e45dc8..8a7e832e 100644 --- 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.9.0' +VERSION = '0.9.1' PYTHON_VERSION = (2, 5) DEPENDENCIES = { 'numpy': (1, 6),