Skip to content

Commit

Permalink
REL: set version to 0.15.0-dev, add 0.15.0 release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Feb 28, 2014
1 parent e873f80 commit 9ccc684
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 3 deletions.
47 changes: 47 additions & 0 deletions doc/release/0.15.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
==========================
SciPy 0.15.0 Release Notes
==========================

.. note:: Scipy 0.15.0 is not released yet!

.. contents::

SciPy 0.15.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.15.x branch, and on adding
new features on the master branch.

This release requires Python 2.6, 2.7 or 3.2-3.3 and NumPy 1.5.1 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.15.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.15.0
release.0.14.0
release.0.13.2
release.0.13.1
Expand Down
4 changes: 2 additions & 2 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@
#-----------------------------------

# Source of the release notes
RELEASE = 'doc/release/0.14.0-notes.rst'
RELEASE = 'doc/release/0.15.0-notes.rst'

# Start/end of the log (from git)
LOG_START = 'v0.13.0'
LOG_START = 'v0.14.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 = 14
MINOR = 15
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
Expand Down

0 comments on commit 9ccc684

Please sign in to comment.