From 823561f0600f43b8fba5077f9d89df0c66e56ae4 Mon Sep 17 00:00:00 2001 From: Christopher Ariza Date: Mon, 18 Dec 2023 21:20:40 -0800 Subject: [PATCH] 0.2.2 RC 1 --- .github/workflows/ci.yml | 2 +- README.rst | 6 ++++++ setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d908e4..02c702d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: - id: step run: | if [ "$GITHUB_EVENT_NAME" = "release" ]; then - echo 'matrix_os=["macos-13-xlarge", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT + echo 'matrix_os=["macos-13-xlarge", "macos-13", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT else echo 'matrix_os=["macos-13", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT fi diff --git a/README.rst b/README.rst index ceaf975..9032a5f 100644 --- a/README.rst +++ b/README.rst @@ -36,6 +36,12 @@ ArrayMap requires the following: What is New in ArrayMap ------------------------- +0.2.2 +........ + +Restored functional wheels for Mac OS ``x86_64``. + + 0.2.1 ........ diff --git a/setup.py b/setup.py index f08a123..feeea90 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import os -AM_VERSION = "0.2.1" +AM_VERSION = "0.2.2" with open("README.rst") as file: LONG_DESCRIPTION = file.read()