From b43ffcd0c64fa9ef97e99c15ac3f1f43d9572324 Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Wed, 23 Oct 2024 21:27:31 +0200 Subject: [PATCH] REL: set version to 0.17.1 --- meson.build | 2 +- mesonpy/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 5b509805..4f1b2422 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: MIT -project('meson-python', version: '0.17.0') +project('meson-python', version: '0.17.1') py = import('python').find_installation() diff --git a/mesonpy/__init__.py b/mesonpy/__init__.py index e858367d..4d785a38 100644 --- a/mesonpy/__init__.py +++ b/mesonpy/__init__.py @@ -65,7 +65,7 @@ MesonArgs = Mapping[MesonArgsKeys, List[str]] -__version__ = '0.17.0.dev0' +__version__ = '0.17.1' _NINJA_REQUIRED_VERSION = '1.8.2'