From 0d25aa5cc67c89045ce5ab37cc8f0927055d26f5 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 9 Jun 2026 22:16:17 +0200 Subject: [PATCH 1/3] DOC: update changelog for release 0.20.0 --- CHANGELOG.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3ad9a70c..5da6e033 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,6 +11,14 @@ Changelog +++++++++ +0.20.0 +====== + +- Add support for targeting the Android platform. + +Daniele Nicolodi, Malcolm Smith, Ralf Gommers --- 10-06-2026. + + 0.19.0 ====== From d3d95676c3566dfec763e6f3774ad74dde05d511 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 9 Jun 2026 22:17:05 +0200 Subject: [PATCH 2/3] REL: set version to 0.20.0 --- mesonpy/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mesonpy/__init__.py b/mesonpy/__init__.py index e0328d1a..c9f83453 100644 --- a/mesonpy/__init__.py +++ b/mesonpy/__init__.py @@ -84,7 +84,7 @@ class InvalidLicenseExpression(Exception): # type: ignore[no-redef] MesonArgs = Mapping[MesonArgsKeys, List[str]] -__version__ = '0.20.0.dev0' +__version__ = '0.20.0' _PYPROJECT_METADATA_VERSION = tuple(map(int, pyproject_metadata.__version__.split('.')[:2])) diff --git a/pyproject.toml b/pyproject.toml index f424455c..bd1ffd97 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ requires = [ [project] name = 'meson-python' -version = '0.20.0.dev0' +version = '0.20.0' description = 'Meson Python build backend (PEP 517)' readme = 'README.rst' requires-python = '>= 3.9' From 8f1981ee7f4658ac24ba813b2381def17a2bf63d Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 9 Jun 2026 22:18:00 +0200 Subject: [PATCH 3/3] MAINT: set version to 0.20.1.dev0 --- mesonpy/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mesonpy/__init__.py b/mesonpy/__init__.py index c9f83453..7325d23f 100644 --- a/mesonpy/__init__.py +++ b/mesonpy/__init__.py @@ -84,7 +84,7 @@ class InvalidLicenseExpression(Exception): # type: ignore[no-redef] MesonArgs = Mapping[MesonArgsKeys, List[str]] -__version__ = '0.20.0' +__version__ = '0.21.0.dev0' _PYPROJECT_METADATA_VERSION = tuple(map(int, pyproject_metadata.__version__.split('.')[:2])) diff --git a/pyproject.toml b/pyproject.toml index bd1ffd97..e4465ddf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ requires = [ [project] name = 'meson-python' -version = '0.20.0' +version = '0.21.0.dev0' description = 'Meson Python build backend (PEP 517)' readme = 'README.rst' requires-python = '>= 3.9'