diff options
author | Jarrod Millman <millman@berkeley.edu> | 2008-11-27 10:58:51 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2008-11-27 10:58:51 +0000 |
commit | 52a781dd1131e4ec922eff224cffeade4475e4f7 (patch) | |
tree | eec2c57a1e7efac57bfa63f21888238bd58689d6 /doc/release | |
parent | ce7cd10f480494656a704a7d0db5a8f6e3d8f6fb (diff) | |
download | numpy-52a781dd1131e4ec922eff224cffeade4475e4f7.tar.gz |
add release notes for 1.3
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/1.3.0-notes.rst | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/doc/release/1.3.0-notes.rst b/doc/release/1.3.0-notes.rst new file mode 100644 index 000000000..ceef49b5a --- /dev/null +++ b/doc/release/1.3.0-notes.rst @@ -0,0 +1,41 @@ +========================= +NumPy 1.3.0 Release Notes +========================= + +This minor release comes almost four months after the 1.1.0 release. + +Changes +------- + +Generalized ufuncs +~~~~~~~~~~~~~~~~~~ + +http://projects.scipy.org/scipy/numpy/ticket/887 + +Refactoring numpy.core math configuration +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +http://projects.scipy.org/scipy/numpy/browser/trunk/doc/neps/math_config_clean.txt + +Improvements to build warnings +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +http://projects.scipy.org/scipy/numpy/browser/trunk/doc/neps/warnfix.txt + +Python 2.6 support +~~~~~~~~~~~~~~~~~~ + +http://www.python.org/dev/peps/pep-0361/ + +Histogram +~~~~~~~~~ + +The semantics of histogram has been modified to fix long-standing issues +with outliers handling. The main changes concern + +#. the definition of the bin edges, now including the rightmost edge, and +#. the handling of upper outliers, now ignored rather than tallied in the + rightmost bin. + +The previous behavior is still accessible using `new=False`, but is scheduled +to be deprecated in the next release (1.3). |