summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-01-05 11:09:01 -0700
committerCharles Harris <charlesr.harris@gmail.com>2021-01-05 11:09:01 -0700
commit5458c67afe90cee9ff7d4b96edf1666febb39ecb (patch)
tree46472de67a158924a66fde59008fef846ee85d40
parentc4ae3ce646c4dd9a12669b379a40287e3c5955bd (diff)
downloadnumpy-5458c67afe90cee9ff7d4b96edf1666febb39ecb.tar.gz
REL: Update master after 1.19.5 release.
-rw-r--r--doc/changelog/1.19.5-changelog.rst32
-rw-r--r--doc/source/release.rst1
-rw-r--r--doc/source/release/1.19.5-notes.rst42
3 files changed, 75 insertions, 0 deletions
diff --git a/doc/changelog/1.19.5-changelog.rst b/doc/changelog/1.19.5-changelog.rst
new file mode 100644
index 000000000..f7cbd5377
--- /dev/null
+++ b/doc/changelog/1.19.5-changelog.rst
@@ -0,0 +1,32 @@
+
+Contributors
+============
+
+A total of 8 people contributed to this release. People with a "+" by their
+names contributed a patch for the first time.
+
+* Charles Harris
+* Christoph Gohlke
+* Matti Picus
+* Raghuveer Devulapalli
+* Sebastian Berg
+* Simon Graham +
+* Veniamin Petrenko +
+* Bernie Gray +
+
+Pull requests merged
+====================
+
+A total of 11 pull requests were merged for this release.
+
+* `#17756 <https://github.com/numpy/numpy/pull/17756>`__: BUG: Fix segfault due to out of bound pointer in floatstatus...
+* `#17774 <https://github.com/numpy/numpy/pull/17774>`__: BUG: fix np.timedelta64('nat').__format__ throwing an exception
+* `#17775 <https://github.com/numpy/numpy/pull/17775>`__: BUG: Fixed file handle leak in array_tofile.
+* `#17786 <https://github.com/numpy/numpy/pull/17786>`__: BUG: Raise recursion error during dimension discovery
+* `#17917 <https://github.com/numpy/numpy/pull/17917>`__: BUG: Fix subarray dtype used with too large count in fromfile
+* `#17918 <https://github.com/numpy/numpy/pull/17918>`__: BUG: 'bool' object has no attribute 'ndim'
+* `#17919 <https://github.com/numpy/numpy/pull/17919>`__: BUG: ensure _UFuncNoLoopError can be pickled
+* `#17924 <https://github.com/numpy/numpy/pull/17924>`__: BLD: use BUFFERSIZE=20 in OpenBLAS
+* `#18026 <https://github.com/numpy/numpy/pull/18026>`__: BLD: update to OpenBLAS 0.3.13
+* `#18036 <https://github.com/numpy/numpy/pull/18036>`__: BUG: make a variable volatile to work around clang compiler bug
+* `#18114 <https://github.com/numpy/numpy/pull/18114>`__: REL: Prepare for the NumPy 1.19.5 release.
diff --git a/doc/source/release.rst b/doc/source/release.rst
index 29199fb83..e4b3f6af6 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -7,6 +7,7 @@ Release Notes
1.21.0 <release/1.21.0-notes>
1.20.0 <release/1.20.0-notes>
+ 1.19.5 <release/1.19.5-notes>
1.19.4 <release/1.19.4-notes>
1.19.3 <release/1.19.3-notes>
1.19.2 <release/1.19.2-notes>
diff --git a/doc/source/release/1.19.5-notes.rst b/doc/source/release/1.19.5-notes.rst
new file mode 100644
index 000000000..048f2718c
--- /dev/null
+++ b/doc/source/release/1.19.5-notes.rst
@@ -0,0 +1,42 @@
+.. currentmodule:: numpy
+
+==========================
+NumPy 1.19.5 Release Notes
+==========================
+
+NumPy 1.19.5 is a short bugfix release. Apart from fixing several bugs, the
+main improvement is the update to OpenBLAS 0.3.13 that works around the windows
+2004 bug while not breaking execution on other platforms. This release supports
+Python 3.6-3.9 and is planned to be the last release in the 1.19.x cycle.
+
+Contributors
+============
+
+A total of 8 people contributed to this release. People with a "+" by their
+names contributed a patch for the first time.
+
+* Charles Harris
+* Christoph Gohlke
+* Matti Picus
+* Raghuveer Devulapalli
+* Sebastian Berg
+* Simon Graham +
+* Veniamin Petrenko +
+* Bernie Gray +
+
+Pull requests merged
+====================
+
+A total of 11 pull requests were merged for this release.
+
+* `#17756 <https://github.com/numpy/numpy/pull/17756>`__: BUG: Fix segfault due to out of bound pointer in floatstatus...
+* `#17774 <https://github.com/numpy/numpy/pull/17774>`__: BUG: fix np.timedelta64('nat').__format__ throwing an exception
+* `#17775 <https://github.com/numpy/numpy/pull/17775>`__: BUG: Fixed file handle leak in array_tofile.
+* `#17786 <https://github.com/numpy/numpy/pull/17786>`__: BUG: Raise recursion error during dimension discovery
+* `#17917 <https://github.com/numpy/numpy/pull/17917>`__: BUG: Fix subarray dtype used with too large count in fromfile
+* `#17918 <https://github.com/numpy/numpy/pull/17918>`__: BUG: 'bool' object has no attribute 'ndim'
+* `#17919 <https://github.com/numpy/numpy/pull/17919>`__: BUG: ensure _UFuncNoLoopError can be pickled
+* `#17924 <https://github.com/numpy/numpy/pull/17924>`__: BLD: use BUFFERSIZE=20 in OpenBLAS
+* `#18026 <https://github.com/numpy/numpy/pull/18026>`__: BLD: update to OpenBLAS 0.3.13
+* `#18036 <https://github.com/numpy/numpy/pull/18036>`__: BUG: make a variable volatile to work around clang compiler bug
+* `#18114 <https://github.com/numpy/numpy/pull/18114>`__: REL: Prepare for the NumPy 1.19.5 release.