diff --git a/doc/source/release.rst b/doc/source/release.rst index 152e633e78e7..f90cc1673428 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -8,6 +8,7 @@ see the `commit logs `_. .. toctree:: :maxdepth: 1 + release/1.12.0-notes release/1.11.0-notes release/1.10.1-notes release/1.10.0-notes diff --git a/doc/source/release/1.12.0-notes.rst b/doc/source/release/1.12.0-notes.rst new file mode 100644 index 000000000000..690426900d48 --- /dev/null +++ b/doc/source/release/1.12.0-notes.rst @@ -0,0 +1,129 @@ +========================== +SciPy 1.12.0 Release Notes +========================== + +.. note:: SciPy 1.12.0 is not released yet! + +.. contents:: + +SciPy 1.12.0 is the culmination of X months of hard work. It contains +many new features, numerous bug-fixes, improved test coverage and better +documentation. There have been a number of deprecations and API changes +in this release, which are documented below. All users are encouraged to +upgrade to this release, as there are a large number of bug-fixes and +optimizations. Before upgrading, we recommend that users check that +their own code does not use deprecated SciPy functionality (to do so, +run your code with ``python -Wd`` and check for ``DeprecationWarning`` s). +Our development attention will now shift to bug-fix releases on the +1.12.x branch, and on adding new features on the main branch. + +This release requires Python 3.9+ and NumPy 1.21.6 or greater. + +For running on PyPy, PyPy3 6.0+ is required. + + +************************** +Highlights of this release +************************** + + +************ +New features +************ + +`scipy.cluster` improvements +============================ + + +`scipy.interpolate` improvements +================================ + + +`scipy.linalg` improvements +=========================== + + +`scipy.ndimage` improvements +============================ + + +`scipy.optimize` improvements +============================= + + +`scipy.signal` improvements +=========================== + + +`scipy.sparse` improvements +=========================== + + + +`scipy.spatial` improvements +============================ + + +`scipy.special` improvements +============================ + + +`scipy.stats` improvements +========================== + +Hypothesis Tests +---------------- + + +Sample statistics +----------------- + + +Statistical Distributions +------------------------- + + +Other +----- + + + + +******************* +Deprecated features +******************* + +`scipy.linalg` deprecations +=========================== + + +`scipy.spatial` deprecations +============================ + + + +****************************** +Backwards incompatible changes +****************************** + +************* +Other changes +************* + + + +******* +Authors +******* + + + +************************ +Issues closed for 1.12.0 +************************ + + +************************ +Pull requests for 1.12.0 +************************ + diff --git a/meson.build b/meson.build index 02e50433aaff..deeca48926ca 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project( # Note that the git commit hash cannot be added dynamically here (it is added # in the dynamically generated and installed `scipy/version.py` though - see # tools/version_utils.py - version: '1.11.0.dev0', + version: '1.12.0.dev0', license: 'BSD-3', meson_version: '>= 1.1.0', default_options: [ diff --git a/tools/version_utils.py b/tools/version_utils.py index 5d1b9dbf0a4b..faacf276a102 100644 --- a/tools/version_utils.py +++ b/tools/version_utils.py @@ -4,7 +4,7 @@ MAJOR = 1 -MINOR = 11 +MINOR = 12 MICRO = 0 ISRELEASED = False IS_RELEASE_BRANCH = False