Skip to content

Commit

Permalink
REL: add 0.17.0 release notes and set version to 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Feb 27, 2019
1 parent e1cbe68 commit 55d48df
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
17 changes: 17 additions & 0 deletions doc/release/0.17.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
==========================
Weave 0.17.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 now-removed SciPy submodule ``scipy.weave``.
It is Python 2.x only, and is provided for users that need new versions of
SciPy but have existing code that still depends on ``scipy.weave``. For new code,
users are recommended to use Cython.

Weave 0.17.0 is a maintenance release that fixes compatibility with NumPy
1.16.x.

This release requires Python 2.6 or 2.7.
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.17.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 @@ -7,3 +7,4 @@ Release Notes

release.0.15.0
release.0.16.0
release.0.17.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 = 17
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


Expand Down

0 comments on commit 55d48df

Please sign in to comment.