diff --git a/CHANGE_LOG b/CHANGE_LOG index 8e573014eb0..7efe83d12df 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -1,3 +1,30 @@ +Version 0.57.1 (21 June, 2023) +------------------------------ + +Pull-Requests: + +* PR `#8964 `_: fix missing nopython keyword in cuda random module (`esc `_) +* PR `#8965 `_: fix return dtype for np.angle (`guilhermeleobas `_ `esc `_) +* PR `#8982 `_: Don't do the parfor diagnostics pass for the parfor gufunc. (`DrTodd13 `_) +* PR `#8996 `_: adding a test for 8940 (`esc `_) +* PR `#8958 `_: resurrect the import, this time in the registry initialization (`esc `_) +* PR `#8947 `_: Introduce internal _isinstance_no_warn (`guilhermeleobas `_ `esc `_) +* PR `#8998 `_: Fix 8939 (second attempt) (`esc `_) +* PR `#8978 `_: Import MVC packages when using MVCLinker. (`bdice `_) +* PR `#8895 `_: CUDA: Enable caching functions that use CG (`gmarkall `_) +* PR `#8976 `_: Fix index URL for ptxcompiler/cubinlinker packages. (`bdice `_) +* PR `#9004 `_: Skip MVC test when libraries unavailable (`gmarkall `_ `esc `_) +* PR `#9006 `_: link to version support table instead of using explicit versions (`esc `_) +* PR `#9005 `_: Fix: Issue #8923 - avoid spurious device-to-host transfers in CUDA ufuncs (`gmarkall `_) + + +Authors: + +* `bdice `_ +* `DrTodd13 `_ +* `esc `_ +* `gmarkall `_ + Version 0.57.0 (1 May, 2023) ---------------------------- @@ -395,6 +422,7 @@ Pull-Requests: * PR `#8879 `_: Remove use of ``compile_isolated`` from generator tests. (`stuartarchibald `_) * PR `#8880 `_: Fix missing dependency guard on pyyaml in ``test_azure_config``. (`stuartarchibald `_) * PR `#8881 `_: Replace use of compile_isolated in test_obj_lifetime (`sklam `_) +* PR `#8884 `_: Pin llvmlite and NumPy on release branch (`sklam `_) * PR `#8887 `_: Update PyPI supported version tags (`bryant1410 `_) * PR `#8896 `_: Remove codecov install (now deleted from PyPI) (`gmarkall `_) * PR `#8902 `_: Enable CALL_FUNCTION_EX fix for py3.11 (`sklam `_) diff --git a/docs/source/user/installing.rst b/docs/source/user/installing.rst index 72307ac056e..a83c4fd3033 100644 --- a/docs/source/user/installing.rst +++ b/docs/source/user/installing.rst @@ -262,6 +262,8 @@ information. +----------++--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ | Numba | Release date | Python | NumPy | llvmlite | LLVM | TBB | +===========+==============+===========================+============================+==============================+===================+=============================+ +| 0.57.1 | 2023-06-21 | 3.8.x <= version < 3.12 | 1.21 <= version < 1.25 | 0.40.x | 14.x | 2021.6 <= version | ++-----------+--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ | 0.57.0 | 2023-05-01 | 3.8.x <= version < 3.12 | 1.21 <= version < 1.25 | 0.40.x | 14.x | 2021.6 <= version | +-----------+--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ | 0.56.4 | 2022-11-03 | 3.7.x <= version < 3.11 | 1.18 <= version < 1.24 | 0.39.x | 11.x | 2021.x |