Skip to content

Commit

Permalink
REL: set version to 0.15.0 and add release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed May 11, 2014
1 parent 1281650 commit d0b43b3
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 1 deletion.
20 changes: 20 additions & 0 deletions doc/release/0.15.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
==========================
Weave 0.15.0 Release Notes
==========================

Weave provides tools for including C/C++ code within Python code. Inlining
C/C++ code within Python generally results in speedups of 1.5x to 30x over
algorithms written in pure Python.

Weave is the stand-alone version of the deprecated Scipy submodule scipy.weave.
It is Python 2.x only, and is provided for users that need new versions of
Scipy (from which the weave submodule may be removed) but have existing code
that still depends on scipy.weave. For new code, users are recommended to use
Cython.

Weave 0.15.0 is the first release of Weave as a standalone package. It is
numbered 0.15.0, because it was split from Scipy after the 0.14.0 release of
that package. No new functionality is included in this release compared to
Scipy 0.14.0, only changes needed to make Weave a standalone package.

This release requires Python 2.6 or 2.7.
1 change: 1 addition & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ are recommended to use Cython.
.. toctree::
:maxdepth: 2

release
tutorial
api_reference
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
8 changes: 8 additions & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*************
Release Notes
*************

.. toctree::
:maxdepth: 1

release.0.15.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
MAJOR = 0
MINOR = 15
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


Expand Down

0 comments on commit d0b43b3

Please sign in to comment.