Skip to content

Commit

Permalink
REL: set version to 0.17.0-dev0, add 0.17.0 release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed May 10, 2015
1 parent 1a8db27 commit 145e011
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bento.info
Original file line number Diff line number Diff line change
@@ -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/
Expand Down
46 changes: 46 additions & 0 deletions doc/release/0.17.0-notes.rst
Original file line number Diff line number Diff line change
@@ -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
-------------

1 change: 1 addition & 0 deletions doc/source/release.0.17.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. include:: ../release/0.15.0-notes.rst
1 change: 1 addition & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"""

MAJOR = 0
MINOR = 16
MINOR = 17
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
Expand Down

0 comments on commit 145e011

Please sign in to comment.