Skip to content

Commit 44eb726

Browse files
committed
MAINT: Update main after NumPy 2.1.2 release
- Add 2.1.2-changelog.rst - Add 2.1.2-notes.rst - Update release.rst - Update .mailmap [skip azp] [skip cirrus] [skip actions]
1 parent ab5064c commit 44eb726

File tree

4 files changed

+89
-0
lines changed

4 files changed

+89
-0
lines changed

Diff for: .mailmap

+2
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ Imen Rajhi <[email protected]>
304304
Inessa Pawson <[email protected]>
305305
Irina Maria Mocan <[email protected]>
306306
Irvin Probst <[email protected]>
307+
Ishan Koradia <[email protected]>
307308
Ivan Meleshko <[email protected]>
308309
Isabela Presedo-Floyd <[email protected]> <[email protected]>
309310
Ganesh Kathiresan <[email protected]>
@@ -620,6 +621,7 @@ Simon Gasse <[email protected]>
620621
621622
Sista Seetaram <[email protected]>
622623
624+
Slava Gorloff <[email protected]>
623625
624626
625627
Srimukh Sripada <[email protected]>

Diff for: doc/changelog/2.1.2-changelog.rst

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
Contributors
3+
============
4+
5+
A total of 11 people contributed to this release. People with a "+" by their
6+
names contributed a patch for the first time.
7+
8+
* Charles Harris
9+
* Chris Sidebottom
10+
* Ishan Koradia +
11+
* João Eiras +
12+
* Katie Rust +
13+
* Marten van Kerkwijk
14+
* Matti Picus
15+
* Nathan Goldbaum
16+
* Peter Hawkins
17+
* Pieter Eendebak
18+
* Slava Gorloff +
19+
20+
Pull requests merged
21+
====================
22+
23+
A total of 14 pull requests were merged for this release.
24+
25+
* `#27333 <https://github.com/numpy/numpy/pull/27333>`__: MAINT: prepare 2.1.x for further development
26+
* `#27400 <https://github.com/numpy/numpy/pull/27400>`__: BUG: apply critical sections around populating the dispatch cache
27+
* `#27406 <https://github.com/numpy/numpy/pull/27406>`__: BUG: Stub out get_build_msvc_version if distutils.msvccompiler...
28+
* `#27416 <https://github.com/numpy/numpy/pull/27416>`__: BUILD: fix missing include for std::ptrdiff_t for C++23 language...
29+
* `#27433 <https://github.com/numpy/numpy/pull/27433>`__: BLD: pin setuptools to avoid breaking numpy.distutils
30+
* `#27437 <https://github.com/numpy/numpy/pull/27437>`__: BUG: Allow unsigned shift argument for np.roll
31+
* `#27439 <https://github.com/numpy/numpy/pull/27439>`__: BUG: Disable SVE VQSort
32+
* `#27471 <https://github.com/numpy/numpy/pull/27471>`__: BUG: rfftn axis bug
33+
* `#27479 <https://github.com/numpy/numpy/pull/27479>`__: BUG: Fix extra decref of PyArray_UInt8DType.
34+
* `#27480 <https://github.com/numpy/numpy/pull/27480>`__: CI: use PyPI not scientific-python-nightly-wheels for CI doc...
35+
* `#27481 <https://github.com/numpy/numpy/pull/27481>`__: MAINT: Check for SVE support on demand
36+
* `#27484 <https://github.com/numpy/numpy/pull/27484>`__: BUG: initialize the promotion state to be weak
37+
* `#27501 <https://github.com/numpy/numpy/pull/27501>`__: MAINT: Bump pypa/cibuildwheel from 2.20.0 to 2.21.2
38+
* `#27506 <https://github.com/numpy/numpy/pull/27506>`__: BUG: avoid segfault on bad arguments in ndarray.__array_function__

Diff for: doc/source/release.rst

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release notes
66
:maxdepth: 2
77

88
2.2.0 <release/2.2.0-notes>
9+
2.1.2 <release/2.1.2-notes>
910
2.1.1 <release/2.1.1-notes>
1011
2.1.0 <release/2.1.0-notes>
1112
2.0.2 <release/2.0.2-notes>

Diff for: doc/source/release/2.1.2-notes.rst

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
.. currentmodule:: numpy
2+
3+
==========================
4+
NumPy 2.1.2 Release Notes
5+
==========================
6+
7+
NumPy 2.1.2 is a maintenance release that fixes bugs and regressions
8+
discovered after the 2.1.1 release.
9+
10+
The Python versions supported by this release are 3.10-3.13.
11+
12+
Contributors
13+
============
14+
15+
A total of 11 people contributed to this release. People with a "+" by their
16+
names contributed a patch for the first time.
17+
18+
* Charles Harris
19+
* Chris Sidebottom
20+
* Ishan Koradia +
21+
* João Eiras +
22+
* Katie Rust +
23+
* Marten van Kerkwijk
24+
* Matti Picus
25+
* Nathan Goldbaum
26+
* Peter Hawkins
27+
* Pieter Eendebak
28+
* Slava Gorloff +
29+
30+
Pull requests merged
31+
====================
32+
33+
A total of 14 pull requests were merged for this release.
34+
35+
* `#27333 <https://github.com/numpy/numpy/pull/27333>`__: MAINT: prepare 2.1.x for further development
36+
* `#27400 <https://github.com/numpy/numpy/pull/27400>`__: BUG: apply critical sections around populating the dispatch cache
37+
* `#27406 <https://github.com/numpy/numpy/pull/27406>`__: BUG: Stub out get_build_msvc_version if distutils.msvccompiler...
38+
* `#27416 <https://github.com/numpy/numpy/pull/27416>`__: BUILD: fix missing include for std::ptrdiff_t for C++23 language...
39+
* `#27433 <https://github.com/numpy/numpy/pull/27433>`__: BLD: pin setuptools to avoid breaking numpy.distutils
40+
* `#27437 <https://github.com/numpy/numpy/pull/27437>`__: BUG: Allow unsigned shift argument for np.roll
41+
* `#27439 <https://github.com/numpy/numpy/pull/27439>`__: BUG: Disable SVE VQSort
42+
* `#27471 <https://github.com/numpy/numpy/pull/27471>`__: BUG: rfftn axis bug
43+
* `#27479 <https://github.com/numpy/numpy/pull/27479>`__: BUG: Fix extra decref of PyArray_UInt8DType.
44+
* `#27480 <https://github.com/numpy/numpy/pull/27480>`__: CI: use PyPI not scientific-python-nightly-wheels for CI doc...
45+
* `#27481 <https://github.com/numpy/numpy/pull/27481>`__: MAINT: Check for SVE support on demand
46+
* `#27484 <https://github.com/numpy/numpy/pull/27484>`__: BUG: initialize the promotion state to be weak
47+
* `#27501 <https://github.com/numpy/numpy/pull/27501>`__: MAINT: Bump pypa/cibuildwheel from 2.20.0 to 2.21.2
48+
* `#27506 <https://github.com/numpy/numpy/pull/27506>`__: BUG: avoid segfault on bad arguments in ndarray.__array_function__

0 commit comments

Comments
 (0)