From 4f50bf27ef5282f8147c1df073d27859bda5e890 Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Tue, 16 Apr 2024 23:11:36 +0200 Subject: [PATCH] REL: set version to 0.16.0 --- meson.build | 2 +- mesonpy/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 1cefb695b..4747ae9c0 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: MIT -project('meson-python', version: '0.16.0.dev0') +project('meson-python', version: '0.16.0') py = import('python').find_installation() diff --git a/mesonpy/__init__.py b/mesonpy/__init__.py index b490469a2..6db5b5b12 100644 --- a/mesonpy/__init__.py +++ b/mesonpy/__init__.py @@ -66,7 +66,7 @@ MesonArgs = Mapping[MesonArgsKeys, List[str]] -__version__ = '0.16.0.dev0' +__version__ = '0.16.0' _NINJA_REQUIRED_VERSION = '1.8.2'