From 222a702d0fc02a262d63410c42b45bdb60ff46b1 Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Mon, 13 Mar 2023 17:22:51 -0400 Subject: [PATCH 1/2] Preparing v0.15.0 release --- .github/workflows/publish.yml | 4 ++-- CHANGES.rst | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ab895a1..7ba5796 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,10 +13,10 @@ jobs: if: ((github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) || contains(github.event.pull_request.labels.*.name, 'Build wheels')) steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: 3.8 diff --git a/CHANGES.rst b/CHANGES.rst index eb8213b..d5ec942 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,11 @@ Changes in sphinx-automodapi ============================ -0.15.0 (2023-01-06) +0.15.0 (2023-03-13) ------------------- +- Silenced spurious warnings on configuring ``:nosignatures:``. [#158] + - Fixed issue with non-ascii characters in object members when the encoding is not ``utf8``. [#153] From 56d85b75641eec172603cf82142fb7410a4cabb3 Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Mon, 13 Mar 2023 17:25:40 -0400 Subject: [PATCH 2/2] Cancel duplicate CI workflow --- .github/workflows/ci_workflows.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci_workflows.yml b/.github/workflows/ci_workflows.yml index 30465d0..ad69913 100644 --- a/.github/workflows/ci_workflows.yml +++ b/.github/workflows/ci_workflows.yml @@ -10,6 +10,10 @@ on: # Monthly cron - cron: '0 8 1 * *' +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: tests: runs-on: ${{ matrix.os }}