8000 MAINT: Update maintenance/2.1.x after the 2.0.2 release by charris · Pull Request #27287 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

MAINT: Update maintenance/2.1.x after the 2.0.2 release #27287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
MAINT: Update main after the 2.0.2 release
- Forward port 2.0.2-changelog.rst
- Forward port 2.0.2-notes.rst
- Update release.rst

[skip azp] [skip cirrus] [skip actions]
  • Loading branch information
charris committed Aug 27, 2024
commit 326bc17ec19c26129e40485f8c539686efa0e289
45 changes: 45 additions & 0 deletions doc/changelog/2.0.2-changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@

Contributors
============

A total of 13 people contributed to this release. People with a "+" by their
names contributed a patch for the first time.

* Bruno Oliveira +
* Charles Harris
* Chris Sidebottom
* Christian Heimes +
* Christopher Sidebottom
* Mateusz Sokół
* Matti Picus
* Nathan Goldbaum
* Pieter Eendebak
* Raghuveer Devulapalli
* Ralf Gommers
* Sebastian Berg
* Yair Chuchem +

Pull requests merged
====================

A total of 19 pull requests were merged for this release.

* `#27000 <https://github.com/numpy/numpy/pull/27000>`__: REL: Prepare for the NumPy 2.0.1 release [wheel build]
* `#27001 <https://github.com/numpy/numpy/pull/27001>`__: MAINT: prepare 2.0.x for further development
* `#27021 <https://github.com/numpy/numpy/pull/27021>`__: BUG: cfuncs.py: fix crash when sys.stderr is not available
* `#27022 <https://github.com/numpy/numpy/pull/27022>`__: DOC: Fix migration note for ``alltrue`` and ``sometrue``
* `#27061 <https://github.com/numpy/numpy/pull/27061>`__: BUG: use proper input and output descriptor in array_assign_subscript...
* `#27073 <https://github.com/numpy/numpy/pull/27073>`__: BUG: Mirror VQSORT_ENABLED logic in Quicksort
* `#27074 <https://github.com/numpy/numpy/pull/27074>`__: BUG: Bump Highway to latest master
* `#27077 <https://github.com/numpy/numpy/pull/27077>`__: BUG: Off by one in memory overlap check
* `#27122 <https://github.com/numpy/numpy/pull/27122>`__: BUG: Use the new ``npyv_loadable_stride_`` functions for ldexp and...
* `#27126 <https://github.com/numpy/numpy/pull/27126>`__: BUG: Bump Highway to latest
* `#27128 <https://github.com/numpy/numpy/pull/27128>`__: BUG: add missing error handling in public_dtype_api.c
* `#27129 <https://github.com/numpy/numpy/pull/27129>`__: BUG: fix another cast setup in array_assign_subscript
* `#27130 <https://github.com/numpy/numpy/pull/27130>`__: BUG: Fix building NumPy in FIPS mode
* `#27131 <https://github.com/numpy/numpy/pull/27131>`__: BLD: update vendored Meson for cross-compilation patches
* `#27146 <https://github.com/numpy/numpy/pull/27146>`__: MAINT: Scipy openblas 0.3.27.44.4
* `#27151 <https://github.com/numpy/numpy/pull/27151>`__: BUG: Do not accidentally store dtype metadata in ``np.save``
* `#27195 <https://github.com/numpy/numpy/pull/27195>`__: REV: Revert undef I and document it
* `#27213 <https://github.com/numpy/numpy/pull/27213>`__: BUG: Fix NPY_RAVEL_AXIS on backwards compatible NumPy 2 builds
* `#27279 <https://github.com/numpy/numpy/pull/27279>`__: BUG: Fix array_equal for numeric and non-numeric scalar types
1 change: 1 addition & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release notes

2.1.1 <release/2.1.1-notes>
2.1.0 <release/2.1.0-notes>
2.0.2 <release/2.0.2-notes>
2.0.1 <release/2.0.1-notes>
2.0.0 <release/2.0.0-notes>
1.26.4 <release/1.26.4-notes>
Expand Down
58 changes: 58 additions & 0 deletions doc/source/release/2.0.2-notes.rst
98D0
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
.. currentmodule:: numpy

==========================
NumPy 2.0.2 Release Notes
==========================

NumPy 2.0.2 is a maintenance release that fixes bugs and regressions
discovered after the 2.0.1 release.

The Python versions supported by this release are 3.9-3.12.


Contributors
============

A total of 13 people contributed to this release. People with a "+" by their
names contributed a patch for the first time.

* Bruno Oliveira +
* Charles Harris
* Chris Sidebottom
* Christian Heimes +
* Christopher Sidebottom
* Mateusz Sokół
* Matti Picus
* Nathan Goldbaum
* Pieter Eendebak
* Raghuveer Devulapalli
* Ralf Gommers
* Sebastian Berg
* Yair Chuchem +


Pull requests merged
====================

A total of 19 pull requests were merged for this release.

* `#27000 <https://github.com/numpy/numpy/pull/27000>`__: REL: Prepare for the NumPy 2.0.1 release [wheel build]
* `#27001 <https://github.com/numpy/numpy/pull/27001>`__: MAINT: prepare 2.0.x for further development
* `#27021 <https://github.com/numpy/numpy/pull/27021>`__: BUG: cfuncs.py: fix crash when sys.stderr is not available
* `#27022 <https://github.com/numpy/numpy/pull/27022>`__: DOC: Fix migration note for ``alltrue`` and ``sometrue``
* `#27061 <https://github.com/numpy/numpy/pull/27061>`__: BUG: use proper input and output descriptor in array_assign_subscript...
* `#27073 <https://github.com/numpy/numpy/pull/27073>`__: BUG: Mirror VQSORT_ENABLED logic in Quicksort
* `#27074 <https://github.com/numpy/numpy/pull/27074>`__: BUG: Bump Highway to latest master
* `#27077 <https://github.com/numpy/numpy/pull/27077>`__: BUG: Off by one in memory overlap check
* `#27122 <https://github.com/numpy/numpy/pull/27122>`__: BUG: Use the new ``npyv_loadable_stride_`` functions for ldexp and...
* `#27126 <https://github.com/numpy/numpy/pull/27126>`__: BUG: Bump Highway to latest
* `#27128 <https://github.com/numpy/numpy/pull/27128>`__: BUG: add missing error handling in public_dtype_api.c
* `#27129 <https://github.com/numpy/numpy/pull/27129>`__: BUG: fix another cast setup in array_assign_subscript
* `#27130 <https://github.com/numpy/numpy/pull/27130>`__: BUG: Fix building NumPy in FIPS mode
* `#27131 <https://github.com/numpy/numpy/pull/27131>`__: BLD: update vendored Meson for cross-compilation patches
* `#27146 <https://github.com/numpy/numpy/pull/27146>`__: MAINT: Scipy openblas 0.3.27.44.4
* `#27151 <https://github.com/numpy/numpy/pull/27151>`__: BUG: Do not accidentally store dtype metadata in ``np.save``
* `#27195 <https://github.com/numpy/numpy/pull/27195>`__: REV: Revert undef I and document it
* `#27213 <https://github.com/numpy/numpy/pull/27213>`__: BUG: Fix NPY_RAVEL_AXIS on backwards compatible NumPy 2 builds
* `#27279 <https://github.com/numpy/numpy/pull/27279>`__: BUG: Fix array_equal for numeric and non-numeric scalar types

Loading
0