From aeae4dda6cc37ee8940fd486a96b720dfeedfa81 Mon Sep 17 00:00:00 2001 From: Craig Gidney Date: Tue, 24 Sep 2024 01:50:54 -0700 Subject: [PATCH] Release v1.1.0 --- .github/workflows/ci.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a76f68..0488455 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: - run: python tools/overwrite_dev_versions_with_date.py - run: python -m pip install pybind11~=2.11.1 cibuildwheel~=2.16.2 setuptools - run: python -m cibuildwheel --print-build-identifiers - - run: python -m cibuildwheel --output-dir output/chromobius + - run: python -m cibuildwheel --output-dir dist - uses: actions/upload-artifact@v4.4.0 with: name: "dist-chromobius-${{ matrix.os_dist.os }}-${{ matrix.os_dist.dist }}-${{ matrix.os_dist.macosarch }}" diff --git a/setup.py b/setup.py index e63b840..de333da 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ def build_extension(self, ext): ], cwd=build_temp, env=build_env) -__version__ = '1.1.dev0' +__version__ = '1.1.0' with open("README.md", "r", encoding="utf-8") as f: long_description = f.read()