From 686422c4f0a71be1b4258309590fd3e9de102e18 Mon Sep 17 00:00:00 2001 From: Tyler Reddy Date: Thu, 17 Aug 2023 14:07:33 -0600 Subject: [PATCH] REL: 1.11.2 release [wheel build] * SciPy `1.11.2` release commit [wheel build] --- meson.build | 2 +- tools/version_utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 3d07208806d7..e843a3aba23f 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.2.dev0', + version: '1.11.2', license: 'BSD-3', meson_version: '>= 1.1.0', default_options: [ diff --git a/tools/version_utils.py b/tools/version_utils.py index ee990369c1ea..6cf6b12b1629 100644 --- a/tools/version_utils.py +++ b/tools/version_utils.py @@ -6,7 +6,7 @@ MAJOR = 1 MINOR = 11 MICRO = 2 -ISRELEASED = False +ISRELEASED = True IS_RELEASE_BRANCH = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)