Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@
Changelog
+++++++++

0.19.0
======

- Drop Python 3.8 support.
- Development-related extras were moved to dependency groups.
- Add support for targeting the iOS platform.
- The ``strip`` binary is now included in synthesized cross files.
- Documentation improvements: add more examples for specific use cases, and add
a contributing guide.

Andrew Annex, Daniele Nicolodi, Michał Górny, Ralf Gommers, Russell
Keith-Magee, Tobias Diez --- 14-01-2026.


0.18.0
======

Expand Down
2 changes: 1 addition & 1 deletion mesonpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class InvalidLicenseExpression(Exception): # type: ignore[no-redef]
MesonArgs = Mapping[MesonArgsKeys, List[str]]


__version__ = '0.19.0.dev0'
__version__ = '0.20.0.dev0'


_PYPROJECT_METADATA_VERSION = tuple(map(int, pyproject_metadata.__version__.split('.')[:2]))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ requires = [

[project]
name = 'meson-python'
version = '0.19.0.dev0'
version = '0.20.0.dev0'
description = 'Meson Python build backend (PEP 517)'
readme = 'README.rst'
requires-python = '>= 3.9'
Expand Down
Loading