From 145e011aeb37a3546575a35c5750f6ebe468de3b Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Sun, 10 May 2015 23:17:27 +0200 Subject: [PATCH] REL: set version to 0.17.0-dev0, add 0.17.0 release notes. --- bento.info | 2 +- doc/release/0.17.0-notes.rst | 46 +++++++++++++++++++++++++++++++++++ doc/source/release.0.17.0.rst | 1 + doc/source/release.rst | 1 + pavement.py | 4 +-- setup.py | 2 +- 6 files changed, 52 insertions(+), 4 deletions(-) create mode 100644 doc/release/0.17.0-notes.rst create mode 100644 doc/source/release.0.17.0.rst diff --git a/bento.info b/bento.info index aedaf2cd61f6..b8262ae63e42 100644 --- a/bento.info +++ b/bento.info @@ -1,5 +1,5 @@ Name: scipy -Version: 0.16.0.dev0 +Version: 0.17.0.dev0 Summary: SciPy: Scientific Library for Python Url: http://www.scipy.org DownloadUrl: http://sourceforge.net/projects/scipy/files/scipy/ diff --git a/doc/release/0.17.0-notes.rst b/doc/release/0.17.0-notes.rst new file mode 100644 index 000000000000..c62ba7b46bf3 --- /dev/null +++ b/doc/release/0.17.0-notes.rst @@ -0,0 +1,46 @@ +========================== +SciPy 0.17.0 Release Notes +========================== + +.. note:: Scipy 0.17.0 is not released yet! + +.. contents:: + +SciPy 0.17.0 is the culmination of X months of hard work. It contains +many new features, numerous bug-fixes, improved test coverage and +better documentation. There have been a number of deprecations and +API changes in this release, which are documented below. All users +are encouraged to upgrade to this release, as there are a large number +of bug-fixes and optimizations. Moreover, our development attention +will now shift to bug-fix releases on the 0.16.x branch, and on adding +new features on the master branch. + +This release requires Python 2.6, 2.7 or 3.2-3.4 and NumPy 1.6.2 or greater. + + +New features +============ + + +Deprecated features +=================== + + +Backwards incompatible changes +============================== + + +Other changes +============= + + +Authors +======= + +Issues closed +------------- + + +Pull requests +------------- + diff --git a/doc/source/release.0.17.0.rst b/doc/source/release.0.17.0.rst new file mode 100644 index 000000000000..be2154a19ba1 --- /dev/null +++ b/doc/source/release.0.17.0.rst @@ -0,0 +1 @@ +.. include:: ../release/0.15.0-notes.rst diff --git a/doc/source/release.rst b/doc/source/release.rst index 5157ae79d5be..8c487189c33d 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -5,6 +5,7 @@ Release Notes .. toctree:: :maxdepth: 1 + release.0.17.0 release.0.16.0 release.0.15.0 release.0.14.0 diff --git a/pavement.py b/pavement.py index 9bdc9148b74a..9053e4801de5 100644 --- a/pavement.py +++ b/pavement.py @@ -110,10 +110,10 @@ #----------------------------------- # Source of the release notes -RELEASE = 'doc/release/0.16.0-notes.rst' +RELEASE = 'doc/release/0.17.0-notes.rst' # Start/end of the log (from git) -LOG_START = 'v0.15.0' +LOG_START = 'v0.16.0' LOG_END = 'master' diff --git a/setup.py b/setup.py index 52ccb6c691df..29364c5bab92 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ """ MAJOR = 0 -MINOR = 16 +MINOR = 17 MICRO = 0 ISRELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)