summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-02-26 07:25:14 -0700
committerCharles Harris <charlesr.harris@gmail.com>2019-02-26 07:58:28 -0700
commitaec409f85ab5ec459bfb9fb27c78ced07f520224 (patch)
tree4282393f03974d49a8f36dae07fb07a6db5e267c
parentfa8816f0a03cd158c52edf55be7afe6d00450d6e (diff)
downloadnumpy-aec409f85ab5ec459bfb9fb27c78ced07f520224.tar.gz
DOC: Prepare for 1.16.2 release.
- Create changelog - Update release notes - Update mailmap [ci skip]
-rw-r--r--.mailmap1
-rw-r--r--doc/changelog/1.16.2-changelog.rst25
-rw-r--r--doc/release/1.16.2-notes.rst59
3 files changed, 62 insertions, 23 deletions
diff --git a/.mailmap b/.mailmap
index e57e12297..a5b6e04de 100644
--- a/.mailmap
+++ b/.mailmap
@@ -195,6 +195,7 @@ Tim Teichmann <t.teichmann@dashdos.com> tteichmann <t.teichmann@dashdos.com>
Tim Teichmann <t.teichmann@dashdos.com> tteichmann <44259103+tteichmann@users.noreply.github.com>
Tom Boyd <pezcore@users.noreply.github.com> pezcore <pezcore@users.noreply.github.com>
Tom Poole <t.b.poole@gmail.com> tpoole <t.b.poole@gmail.com>
+Tony LaTorre <tlatorre@uchicago.edu> tlatorre <tlatorre@uchicago.edu>
Travis Oliphant <travis@continuum.io> Travis E. Oliphant <teoliphant@gmail.com>
Travis Oliphant <travis@continuum.io> Travis Oliphant <oliphant@enthought.com>
Valentin Haenel <valentin@haenel.co> Valentin Haenel <valentin.haenel@gmx.de>
diff --git a/doc/changelog/1.16.2-changelog.rst b/doc/changelog/1.16.2-changelog.rst
new file mode 100644
index 000000000..3cf0cc566
--- /dev/null
+++ b/doc/changelog/1.16.2-changelog.rst
@@ -0,0 +1,25 @@
+
+Contributors
+============
+
+A total of 5 people contributed to this release. People with a "+" by their
+names contributed a patch for the first time.
+
+* Charles Harris
+* Eric Wieser
+* Matti Picus
+* Tyler Reddy
+* Tony LaTorre +
+
+Pull requests merged
+====================
+
+A total of 7 pull requests were merged for this release.
+
+* `#12909 <https://github.com/numpy/numpy/pull/12909>`__: TST: fix vmImage dispatch in Azure
+* `#12923 <https://github.com/numpy/numpy/pull/12923>`__: MAINT: remove complicated test of multiarray import failure mode
+* `#13020 <https://github.com/numpy/numpy/pull/13020>`__: BUG: fix signed zero behavior in npy_divmod
+* `#13026 <https://github.com/numpy/numpy/pull/13026>`__: MAINT: Add functions to parse shell-strings in the platform-native...
+* `#13028 <https://github.com/numpy/numpy/pull/13028>`__: BUG: Fix regression in parsing of F90 and F77 environment variables
+* `#13038 <https://github.com/numpy/numpy/pull/13038>`__: BUG: parse shell escaping in extra_compile_args and extra_link_args
+* `#13041 <https://github.com/numpy/numpy/pull/13041>`__: BLD: Windows absolute path DLL loading
diff --git a/doc/release/1.16.2-notes.rst b/doc/release/1.16.2-notes.rst
index 595df7cc5..62b90dc40 100644
--- a/doc/release/1.16.2-notes.rst
+++ b/doc/release/1.16.2-notes.rst
@@ -2,25 +2,26 @@
NumPy 1.16.2 Release Notes
==========================
+NumPy 1.16.2 is a quick release fixing several problems encountered on Windows.
+The Python versions supported are 2.7 and 3.5-3.7. The Windows problems
+addressed are:
-Highlights
-==========
+- DLL load problems for NumPy wheels on Windows,
+- distutils command line parsing on Windows.
+There is also a regression fix correcting signed zeros produced by divmod, see
+below for details.
-New functions
-=============
+Downstream developers building this release should use Cython >= 0.29.2 and, if
+using OpenBLAS, OpenBLAS > v0.3.4.
-
-New deprecations
-================
-
-
-Expired deprecations
-====================
-
-
-Future changes
-==============
+If you are installing using pip, you may encounter a problem with older
+installed versions of NumPy that pip did not delete becoming mixed with the
+current version, resulting in an ``ImportError``. That problem is particularly
+common on Debian derived distributions due to a modified pip. The fix is to
+make sure all previous NumPy versions installed by pip have been removed. See
+`#12736 <https://github.com/numpy/numpy/issues/12736>`__ for discussion of the
+issue.
Compatibility notes
@@ -41,17 +42,29 @@ zero::
>>> np.zeros(10)//1
array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])
-C API changes
-=============
-
-New Features
+Contributors
============
+A total of 5 people contributed to this release. People with a "+" by their
+names contributed a patch for the first time.
-Improvements
-============
+* Charles Harris
+* Eric Wieser
+* Matti Picus
+* Tyler Reddy
+* Tony LaTorre +
+
+
+Pull requests merged
+====================
+A total of 7 pull requests were merged for this release.
-Changes
-=======
+* `#12909 <https://github.com/numpy/numpy/pull/12909>`__: TST: fix vmImage dispatch in Azure
+* `#12923 <https://github.com/numpy/numpy/pull/12923>`__: MAINT: remove complicated test of multiarray import failure mode
+* `#13020 <https://github.com/numpy/numpy/pull/13020>`__: BUG: fix signed zero behavior in npy_divmod
+* `#13026 <https://github.com/numpy/numpy/pull/13026>`__: MAINT: Add functions to parse shell-strings in the platform-native...
+* `#13028 <https://github.com/numpy/numpy/pull/13028>`__: BUG: Fix regression in parsing of F90 and F77 environment variables
+* `#13038 <https://github.com/numpy/numpy/pull/13038>`__: BUG: parse shell escaping in extra_compile_args and extra_link_args
+* `#13041 <https://github.com/numpy/numpy/pull/13041>`__: BLD: Windows absolute path DLL loading