Skip to content

Commit

Permalink
Merge branch 'release/1.17.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Jan 14, 2025
2 parents c41e6ea + 0dfcf02 commit bcc1f26
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@ jobs:
include:
- os: ubuntu-20.04
arch: aarch64
- os: macos-13
arch: universal2
- os: macos-14
arch: universal2
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
Expand Down
8 changes: 8 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release Notes
=============

Version 1.17.2
--------------

**New Features**

* Added universal binary wheels for macOS. That is, contains both x86_64 and
arm64 architectures in the same wheel.

Version 1.17.1
--------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '1.17'
# The full version, including alpha/beta/rc tags.
release = '1.17.0'
release = '1.17.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/wrapt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = ('1', '17', '1')
__version_info__ = ('1', '17', '2')
__version__ = '.'.join(__version_info__)

from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
Expand Down

0 comments on commit bcc1f26

Please sign in to comment.