From b02f3b27feec61e696b50405d0e5edf98fb19ebd Mon Sep 17 00:00:00 2001 From: Siu Kwan Lam <1929845+sklam@users.noreply.github.com> Date: Thu, 1 Sep 2022 17:03:13 -0500 Subject: [PATCH 1/6] Bump NumPy pinning in meta.yaml --- buildscripts/condarecipe.local/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/condarecipe.local/meta.yaml b/buildscripts/condarecipe.local/meta.yaml index 14d3b650e49..a43d4c9a116 100644 --- a/buildscripts/condarecipe.local/meta.yaml +++ b/buildscripts/condarecipe.local/meta.yaml @@ -45,7 +45,7 @@ requirements: run: - python >=3.7 # NumPy 1.22.0, 1.22.1, 1.22.2 are all broken for ufuncs, see #7756 - - numpy >=1.18, !=1.22.0, !=1.22.1, !=1.22.2, <1.23 + - numpy >=1.18, !=1.22.0, !=1.22.1, !=1.22.2, <1.24 - setuptools <60 - importlib_metadata # [py<39] # On channel https://anaconda.org/numba/ From 9518105e818fd0c2fec19786ef3d70641a5f6d23 Mon Sep 17 00:00:00 2001 From: esc Date: Fri, 2 Sep 2022 01:56:29 +0200 Subject: [PATCH 2/6] update changelog to 0.56.2 As title --- CHANGE_LOG | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGE_LOG b/CHANGE_LOG index f809b21423a..5e12f240d72 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -1,4 +1,4 @@ -Version 0.56.1 (1 September, 2022) +Version 0.56.2 (1 September, 2022) ---------------------------------- This is a bugfix release that supports NumPy 1.23 and fixes CUDA function @@ -19,6 +19,12 @@ Pull-Requests: * PR `#8411 `_: update version support table for 0.56.1 (`esc `_) * PR `#8412 `_: Create changelog for 0.56.1 (`Andre Masella `_) * PR `#8413 `_: Fix Azure CI for NumPy 1.23 and use conda-forge scipy (`Siu Kwan Lam `_) +* PR `#8414 `_: Hotfix for 0.56.2 (`Siu Kwan Lam `_) +* +Version 0.56.1 (1 September, 2022) +---------------------------------- + +The release was skipped due to issues during the release process. Version 0.56.0 (25 July, 2022) ------------------------------ From d4698dd3f33cb5bfa0445c50fe7cae25cc592205 Mon Sep 17 00:00:00 2001 From: esc Date: Fri, 2 Sep 2022 01:56:59 +0200 Subject: [PATCH 3/6] update version support table for 0.56.2 As title --- docs/source/user/installing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user/installing.rst b/docs/source/user/installing.rst index ffba3172c05..8f6765c078b 100644 --- a/docs/source/user/installing.rst +++ b/docs/source/user/installing.rst @@ -278,7 +278,7 @@ information. +===========+==============+===========================+============================+==============================+===================+=============================+ | 0.57.x | TBC | 3.8.x <= version < 3.12 | 1.19 <= version < 1.24 | 0.40.x | 11.x | 2021.x | +-----------+--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ -| 0.56.1 | TBC | 3.7.x <= version < 3.11 | 1.18 <= version < 1.24 | 0.39.x | 11.x | 2021.x | +| 0.56.2 | 2022-09-01 | 3.7.x <= version < 3.11 | 1.18 <= version < 1.24 | 0.39.x | 11.x | 2021.x | +-----------+--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ | 0.56.0 | 2022-07-25 | 3.7.x <= version < 3.11 | 1.18 <= version < 1.23 | 0.39.x | 11.x | 2021.x | +-----------+--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ From 4dfd22652f70244d2e6cc0d196d46b532f3cf847 Mon Sep 17 00:00:00 2001 From: Siu Kwan Lam <1929845+sklam@users.noreply.github.com> Date: Thu, 1 Sep 2022 19:44:23 -0500 Subject: [PATCH 4/6] Remove extra asterisk --- CHANGE_LOG | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGE_LOG b/CHANGE_LOG index 5e12f240d72..8bcc085a2bb 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -20,7 +20,6 @@ Pull-Requests: * PR `#8412 `_: Create changelog for 0.56.1 (`Andre Masella `_) * PR `#8413 `_: Fix Azure CI for NumPy 1.23 and use conda-forge scipy (`Siu Kwan Lam `_) * PR `#8414 `_: Hotfix for 0.56.2 (`Siu Kwan Lam `_) -* Version 0.56.1 (1 September, 2022) ---------------------------------- From 26cadec61b2b43f255ba33f60ed0a51a85704610 Mon Sep 17 00:00:00 2001 From: Siu Kwan Lam <1929845+sklam@users.noreply.github.com> Date: Thu, 1 Sep 2022 19:45:09 -0500 Subject: [PATCH 5/6] Add back accidentally removed line --- CHANGE_LOG | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGE_LOG b/CHANGE_LOG index 8bcc085a2bb..574a37e10f7 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -19,7 +19,8 @@ Pull-Requests: * PR `#8411 `_: update version support table for 0.56.1 (`esc `_) * PR `#8412 `_: Create changelog for 0.56.1 (`Andre Masella `_) * PR `#8413 `_: Fix Azure CI for NumPy 1.23 and use conda-forge scipy (`Siu Kwan Lam `_) -* PR `#8414 `_: Hotfix for 0.56.2 (`Siu Kwan Lam `_) +* PR `#8414 `_: Hotfix for 0.56.2 (`Siu Kwan Lam `_) + Version 0.56.1 (1 September, 2022) ---------------------------------- From b80e438ea121299b286a1f980aa491574fa11e3f Mon Sep 17 00:00:00 2001 From: Siu Kwan Lam <1929845+sklam@users.noreply.github.com> Date: Thu, 1 Sep 2022 19:57:07 -0500 Subject: [PATCH 6/6] Fix accidentally shortened url Co-authored-by: esc --- CHANGE_LOG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGE_LOG b/CHANGE_LOG index 574a37e10f7..d40e2598f88 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -19,7 +19,7 @@ Pull-Requests: * PR `#8411 `_: update version support table for 0.56.1 (`esc `_) * PR `#8412 `_: Create changelog for 0.56.1 (`Andre Masella `_) * PR `#8413 `_: Fix Azure CI for NumPy 1.23 and use conda-forge scipy (`Siu Kwan Lam `_) -* PR `#8414 `_: Hotfix for 0.56.2 (`Siu Kwan Lam `_) +* PR `#8414 `_: Hotfix for 0.56.2 (`Siu Kwan Lam `_) Version 0.56.1 (1 September, 2022) ----------------------------------