Skip to content

Commit

Permalink
REL: set version of master to 0.14.0-dev, add 0.14.0 release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Aug 21, 2013
1 parent 7c36b55 commit 78eb93c
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 3 deletions.
39 changes: 39 additions & 0 deletions doc/release/0.14.0-notes.rst
@@ -0,0 +1,39 @@
==========================
SciPy 0.14.0 Release Notes
==========================

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

.. contents::

SciPy 0.14.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.14.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
=======

1 change: 1 addition & 0 deletions doc/source/release.0.14.0.rst
@@ -0,0 +1 @@
.. include:: ../release/0.14.0-notes.rst
1 change: 1 addition & 0 deletions doc/source/release.rst
Expand Up @@ -5,6 +5,7 @@ Release Notes
.. toctree::
:maxdepth: 1

release.0.14.0
release.0.13.0
release.0.12.0
release.0.11.0
Expand Down
4 changes: 2 additions & 2 deletions pavement.py
Expand Up @@ -112,10 +112,10 @@
#-----------------------------------

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

# Start/end of the log (from git)
LOG_START = 'v0.12.0'
LOG_START = 'v0.13.0'
LOG_END = 'master'


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -46,7 +46,7 @@
"""

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

0 comments on commit 78eb93c

Please sign in to comment.