Skip to content

Commit bcc1f26

Browse files
Merge branch 'release/1.17.2'
2 parents c41e6ea + 0dfcf02 commit bcc1f26

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,10 @@ jobs:
218218
include:
219219
- os: ubuntu-20.04
220220
arch: aarch64
221+
- os: macos-13
222+
arch: universal2
223+
- os: macos-14
224+
arch: universal2
221225
steps:
222226
- uses: actions/checkout@v3
223227
- name: Set up QEMU

docs/changes.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Release Notes
22
=============
33

4+
Version 1.17.2
5+
--------------
6+
7+
**New Features**
8+
9+
* Added universal binary wheels for macOS. That is, contains both x86_64 and
10+
arm64 architectures in the same wheel.
11+
412
Version 1.17.1
513
--------------
614

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '1.17'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.17.0'
53+
release = '1.17.2'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

src/wrapt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version_info__ = ('1', '17', '1')
1+
__version_info__ = ('1', '17', '2')
22
__version__ = '.'.join(__version_info__)
33

44
from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,

0 commit comments

Comments
 (0)