Skip to content

Commit

Permalink
REL: set version to v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Jul 23, 2015
1 parent ff5e833 commit 3ab16af
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions doc/release/0.16.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@
SciPy 0.16.0 Release Notes
==========================

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

.. contents::

SciPy 0.16.0 is the culmination of 6 months of hard work. It contains
SciPy 0.16.0 is the culmination of 7 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
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.
Expand Down
2 changes: 1 addition & 1 deletion pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@

# Start/end of the log (from git)
LOG_START = 'v0.15.0'
LOG_END = 'v0.16.0rc1'
LOG_END = 'v0.16.0'


#-------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
MAJOR = 0
MINOR = 16
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%drc2' % (MAJOR, MINOR, MICRO)
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


# Return the git revision as a string
Expand Down

0 comments on commit 3ab16af

Please sign in to comment.