Skip to content

Commit f8d6f04

Browse files
committed
release 0.9.0
Signed-off-by: Filipe Laíns <[email protected]>
1 parent b96ddb2 commit f8d6f04

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ Changelog
33
+++++++++
44

55

6+
0.9.0 (29-09-2022)
7+
==================
8+
9+
- More fixes on ABI tag detection
10+
- Fix incorrect tag on 32-bit Python running on a x86_64 host
11+
- Fix sdist permissions
12+
- Fix incorrect PyPy tags
13+
- Fix ``install_subdirs`` not being included in wheels
14+
- Take ``MACOSX_DEPLOYMENT_TARGET`` into account for the platform tag
15+
- Don't set the rpath on binaries if unneeded
16+
17+
618
0.8.1 (28-07-2022)
719
==================
820

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('mesonpy', version: '0.9.0.dev0')
1+
project('mesonpy', version: '0.9.0')
22

33
py_mod = import('python')
44
py = py_mod.find_installation()

mesonpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
cached_property = lambda x: property(functools.lru_cache(maxsize=None)(x)) # noqa: E731
5757

5858

59-
__version__ = '0.9.0.dev0'
59+
__version__ = '0.9.0'
6060

6161

6262
class _depstr:

0 commit comments

Comments
 (0)