Skip to content

Commit

Permalink
Bump version to 0.3.0dev; Fix doc typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwgoodman committed Dec 28, 2010
1 parent 8e0919b commit 8a6b4e2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
19 changes: 12 additions & 7 deletions RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,19 @@ Release Notes
These are the major changes made in each release. For details of the changes
see the commit log at http://github.com/kwgoodman/bottleneck

Bottleneck 0.2.0
Bottleneck 0.3.0
================

*Release date: Not yet released, in development*

Older versions
==============

Release notes from past releases.

Bottleneck 0.2.0
----------------

*Release date: 2010-12-27*

The second release of Bottleneck is faster, contains more functions, and
Expand All @@ -23,7 +33,7 @@ supports more dtypes.

- nanargmin()
- nanargmax()
- nanmedian, 100X faster than SciPy's nanmedian for (100,100) input, axis=0
- nanmedian, 25X faster than SciPy's nanmedian for (100,100) input, axis=0

**Enhancements**

Expand All @@ -39,11 +49,6 @@ supports more dtypes.

- To run benchmark use bn.bench() instead of bn.benchit()

Older versions
==============

Release notes from past releases.

Bottleneck 0.1.0
----------------

Expand Down
12 changes: 6 additions & 6 deletions bottleneck/src/template/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ def looper(loop, ndim, axis):
>>> loop = '''
.... for iINDEX0 in range(nINDEX0):
.... for iINDEX1 in range(nINDEX1):
.... amin = MAXDTYPE
.... for iINDEX2 in range(nINDEX2):
.... ai = a[INDEXALL]
.... if ai <= amin:
.... amin = ai
.... for iINDEX1 in range(nINDEX1):
.... amin = MAXDTYPE
.... for iINDEX2 in range(nINDEX2):
.... ai = a[INDEXALL]
.... if ai <= amin:
.... amin = ai
.... y[INDEXPOP] = amin
.... '''
Expand Down
2 changes: 1 addition & 1 deletion bottleneck/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"Bottleneck version"

# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
__version__ = "0.2.0"
__version__ = "0.3.0dev"
2 changes: 1 addition & 1 deletion doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Bottleneck
==========

Fast, NumPy array functions written in Cython.
Fast NumPy array functions written in Cython.

.. toctree::
:maxdepth: 2
Expand Down

0 comments on commit 8a6b4e2

Please sign in to comment.