From dc2f92730cc4fc6387fa2915a9fb9c7854548ec8 Mon Sep 17 00:00:00 2001 From: Safihre Date: Mon, 20 May 2024 21:16:12 +0200 Subject: [PATCH] Release v8.2.3 --- .github/workflows/ci_and_build_release.yml | 4 ++-- src/sabctools.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_and_build_release.yml b/.github/workflows/ci_and_build_release.yml index b0d3cb5..cc536e8 100644 --- a/.github/workflows/ci_and_build_release.yml +++ b/.github/workflows/ci_and_build_release.yml @@ -91,9 +91,9 @@ jobs: pip install twine twine upload --skip-existing ./dist/*.tar.gz ./wheelhouse/*.whl - name: Publish release to GitHub - uses: "marvinpinto/action-automatic-releases@v1.2.1" + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') && runner.os == 'Linux' && matrix.linux_arch == 'aarch64' with: - repo_token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} prerelease: false files: ./dist/*.tar.gz diff --git a/src/sabctools.h b/src/sabctools.h index ba27669..3648dc7 100644 --- a/src/sabctools.h +++ b/src/sabctools.h @@ -22,6 +22,6 @@ #include /* Version information */ -#define SABCTOOLS_VERSION "8.2.2" +#define SABCTOOLS_VERSION "8.2.3" PyMODINIT_FUNC PyInit_sabctools(void);