diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2020-03-17 11:57:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 11:57:37 -0700 |
commit | c71ce0e6dbd9ec67b3ac7fb5ac3eb609f8a56829 (patch) | |
tree | 09456f1e50f77edb0110e2b4ac80fbb985d9cc05 | |
parent | 4f2b219647ae6a7928590be2b709894ae2403274 (diff) | |
parent | 6239c13ba8f9a5658fde4266603105c368b3f19f (diff) | |
download | numpy-c71ce0e6dbd9ec67b3ac7fb5ac3eb609f8a56829.tar.gz |
Merge pull request #15768 from charris/update-after-1.18.2-release
REL: Update master after 1.18.2 release.
-rw-r--r-- | .mailmap | 1 | ||||
-rw-r--r-- | doc/RELEASE_WALKTHROUGH.rst.txt | 22 | ||||
-rw-r--r-- | doc/changelog/1.18.2-changelog.rst | 25 | ||||
-rw-r--r-- | doc/source/release.rst | 1 | ||||
-rw-r--r-- | doc/source/release/1.18.2-notes.rst | 39 |
5 files changed, 81 insertions, 7 deletions
@@ -191,6 +191,7 @@ Phil Elson <pelson.pub@gmail.com> Pierre GM <pierregmcode@gmail.com> pierregm <pierregmcode@gmail.com> Pierre GM <pierregmcode@gmail.com> pierregm <pierregm@localhost> Prabhu Ramachandran <prabhu@localhost> prabhu <prabhu@localhost> +Przemyslaw Bartosik <sendthenote@gmail.com> przemb <sendthenote@gmail.com> Ralf Gommers <ralf.gommers@gmail.com> Ralf Gommers <ralf.gommers@googlemail.com> Ralf Gommers <ralf.gommers@gmail.com> rgommers <ralf.gommers@googlemail.com> Rehas Sachdeva <aquannie@gmail.com> rehassachdeva <aquannie@gmail.com> diff --git a/doc/RELEASE_WALKTHROUGH.rst.txt b/doc/RELEASE_WALKTHROUGH.rst.txt index 0a761e350..bae4b838d 100644 --- a/doc/RELEASE_WALKTHROUGH.rst.txt +++ b/doc/RELEASE_WALKTHROUGH.rst.txt @@ -65,7 +65,6 @@ Edit pavement.py and setup.py as detailed in HOWTO_RELEASE:: Sanity check:: - $ python runtests.py -m "full" # NumPy < 1.17 only $ python3 runtests.py -m "full" Push this release directly onto the end of the maintenance branch. This @@ -182,9 +181,9 @@ Add another ``REL`` commit to the numpy maintenance branch, which resets the Create release notes for next release and edit them to set the version:: - $ cp doc/release/template.rst doc/release/1.14.6-notes.rst - $ gvim doc/release/1.14.6-notes.rst - $ git add doc/release/1.14.6-notes.rst + $ cp doc/source/release/template.rst doc/source/release/1.14.6-notes.rst + $ gvim doc/source/release/1.14.6-notes.rst + $ git add doc/source/release/1.14.6-notes.rst Add new release notes to the documentation release list:: @@ -295,6 +294,15 @@ python-announce-list is BCC so that replies will not be sent to that list. Post-Release Tasks ------------------ -Forward port the documentation changes ``doc/release/1.14.5-notes.rst``, -``doc/changelog/1.14.5-changelog.rst`` and add the release note to -``doc/source/release.rst``. +Checkout master and forward port the documentation changes:: + + $ git checkout -b update-after-1.14.5-release + $ git checkout maintenance/1.14.x doc/source/release/1.14.5-notes.rst + $ git checkout maintenance/1.14.x doc/changelog/1.14.5-changelog.rst + $ gvim doc/source/release.rst # Add link to new notes + $ git add doc/changelog/1.14.5-changelog.rst doc/source/release/1.14.5-notes.rst + $ git status # check status before commit + $ git commit -a -m"REL: Update master after 1.14.5 release." + $ git push origin HEAD + +Go to github and make a PR. diff --git a/doc/changelog/1.18.2-changelog.rst b/doc/changelog/1.18.2-changelog.rst new file mode 100644 index 000000000..95008b897 --- /dev/null +++ b/doc/changelog/1.18.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 +* Ganesh Kathiresan + +* Matti Picus +* Sebastian Berg +* przemb + + +Pull requests merged +==================== + +A total of 7 pull requests were merged for this release. + +* `#15675 <https://github.com/numpy/numpy/pull/15675>`__: TST: move _no_tracing to testing._private +* `#15676 <https://github.com/numpy/numpy/pull/15676>`__: MAINT: Large overhead in some random functions +* `#15677 <https://github.com/numpy/numpy/pull/15677>`__: TST: Do not create gfortran link in azure Mac testing. +* `#15679 <https://github.com/numpy/numpy/pull/15679>`__: BUG: Added missing error check in `ndarray.__contains__` +* `#15722 <https://github.com/numpy/numpy/pull/15722>`__: MAINT: use list-based APIs to call subprocesses +* `#15729 <https://github.com/numpy/numpy/pull/15729>`__: REL: Prepare for 1.18.2 release. +* `#15734 <https://github.com/numpy/numpy/pull/15734>`__: BUG: fix logic error when nm fails on 32-bit diff --git a/doc/source/release.rst b/doc/source/release.rst index 7d12bae41..ea4c6320c 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -6,6 +6,7 @@ Release Notes :maxdepth: 3 1.19.0 <release/1.19.0-notes> + 1.18.2 <release/1.18.2-notes> 1.18.1 <release/1.18.1-notes> 1.18.0 <release/1.18.0-notes> 1.17.5 <release/1.17.5-notes> diff --git a/doc/source/release/1.18.2-notes.rst b/doc/source/release/1.18.2-notes.rst new file mode 100644 index 000000000..2681a907f --- /dev/null +++ b/doc/source/release/1.18.2-notes.rst @@ -0,0 +1,39 @@ +.. currentmodule:: numpy + +========================== +NumPy 1.18.2 Release Notes +========================== + +This small release contains a fix for a performance regression in numpy/random +and several bug/maintenance updates. + +The Python versions supported in this release are 3.5-3.8. Downstream +developers should use Cython >= 0.29.15 for Python 3.8 support and OpenBLAS >= +3.7 to avoid errors on the Skylake architecture. + + +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 +* Ganesh Kathiresan + +* Matti Picus +* Sebastian Berg +* przemb + + + +Pull requests merged +==================== + +A total of 7 pull requests were merged for this release. + +* `#15675 <https://github.com/numpy/numpy/pull/15675>`__: TST: move _no_tracing to testing._private +* `#15676 <https://github.com/numpy/numpy/pull/15676>`__: MAINT: Large overhead in some random functions +* `#15677 <https://github.com/numpy/numpy/pull/15677>`__: TST: Do not create gfortran link in azure Mac testing. +* `#15679 <https://github.com/numpy/numpy/pull/15679>`__: BUG: Added missing error check in `ndarray.__contains__` +* `#15722 <https://github.com/numpy/numpy/pull/15722>`__: MAINT: use list-based APIs to call subprocesses +* `#15729 <https://github.com/numpy/numpy/pull/15729>`__: REL: Prepare for 1.18.2 release. +* `#15734 <https://github.com/numpy/numpy/pull/15734>`__: BUG: fix logic error when nm fails on 32-bit |