diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b2429b8..e88b91b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/docs/changes.rst b/docs/changes.rst index ee091d0..22fe196 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -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 -------------- diff --git a/docs/conf.py b/docs/conf.py index 2d48583..6238d77 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/src/wrapt/__init__.py b/src/wrapt/__init__.py index ffc8049..cb00b5a 100644 --- a/src/wrapt/__init__.py +++ b/src/wrapt/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '17', '1') +__version_info__ = ('1', '17', '2') __version__ = '.'.join(__version_info__) from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,