From 92222cca04c48897bd374bf6e1af5ce4cc823d31 Mon Sep 17 00:00:00 2001 From: Tom Scholten Date: Sun, 5 Jul 2026 10:36:10 +0000 Subject: [PATCH 1/7] Add PEP 740 and pin GitHub actions --- .github/workflows/merge.yml | 7 ++++-- .github/workflows/verify.yml | 49 +++++++++++++++++++----------------- CHANGELOG.md | 6 +++++ pyproject.toml | 2 +- 4 files changed, 38 insertions(+), 26 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 00ad17b66..d38f89ed1 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -4,7 +4,7 @@ name: Latest release env: - CACHE_VERSION: 11 + CACHE_VERSION: 1 DEFAULT_PYTHON: "3.14" # Only run on merges @@ -26,7 +26,7 @@ jobs: if: github.event.pull_request.merged == true steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Prepare uv run: | pip install uv @@ -54,6 +54,9 @@ jobs: run: | . venv/bin/activate uv build + - name: Generate PEP 740 Attestations + if: steps.check_package.outputs.should_publish == 'true' + uses: astral-sh/attest-action@f589a42a7efb6fe400b4f400de60b4bc90390027 - name: Publish distribution 📦 to PyPI if: steps.check_package.outputs.should_publish == 'true' run: | diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 7cf273e52..9e68e4884 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -4,7 +4,7 @@ name: Latest commit env: - CACHE_VERSION: 3 + CACHE_VERSION: 2 DEFAULT_PYTHON: "3.14" VENV: venv @@ -25,10 +25,10 @@ jobs: python-version: ${{ steps.python.outputs.python-version }} # Ensure all runners use THIS minor version steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Set up Python and determine minor version for ${{ env.DEFAULT_PYTHON }} id: python - uses: actions/setup-python@v6 + uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 with: python-version: ${{ env.DEFAULT_PYTHON }} - name: Fetch HA pyproject @@ -46,7 +46,7 @@ jobs: steps: - name: Prepare code checkout and python/prek(pre-commit) setup id: cache-reuse - uses: plugwise/gh-actions/prepare-python-and-code@v2 + uses: plugwise/gh-actions/prepare-python-and-code@72ceb10366b90ac4fe63e27ca70341da283084df with: cache-key: ${{ needs.cache.outputs.cache-key }} fail-on-miss: false # First time create cache (if not already exists) @@ -62,12 +62,12 @@ jobs: - prepare steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 with: persist-credentials: false - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@v2 + uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -100,10 +100,10 @@ jobs: - dependencies_check steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@v2 + uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -130,15 +130,15 @@ jobs: python-version: ["3.14", "3.13"] steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Set up Python ${{ matrix.python-version }} id: python - uses: actions/setup-python@v6 + uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 with: python-version: ${{ matrix.python-version }} - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@v2 + uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df with: fail-on-miss: false # First time create cache (if not already exists) cache-key: ${{ needs.cache.outputs.cache-key }} @@ -150,7 +150,7 @@ jobs: . venv-${{ steps.python.outputs.python-version }}/bin/activate pytest --log-level info tests/*.py --cov='.' - name: Upload coverage artifact - uses: actions/upload-artifact@v7 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a with: name: coverage-${{ steps.python.outputs.python-version }} path: .coverage @@ -166,12 +166,12 @@ jobs: - pytest steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 with: persist-credentials: false - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@v2 + uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -189,7 +189,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Run ShellCheck uses: ludeeus/action-shellcheck@master @@ -199,7 +199,7 @@ jobs: name: Dependency steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Run dependency checker run: scripts/dependencies_check.sh debug @@ -213,17 +213,17 @@ jobs: - mypy steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@v2 + uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} venv-dir: ${{ env.VENV }} prek-home: ${{ env.PREK_HOME }} - name: Download all coverage artifacts - uses: actions/download-artifact@v8 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c with: pattern: coverage-* merge-multiple: true @@ -235,7 +235,7 @@ jobs: coverage report --fail-under=94 coverage xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v7 + uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -253,7 +253,7 @@ jobs: - mypy steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Prepare uv run: | pip install uv @@ -280,6 +280,9 @@ jobs: run: | . venv/bin/activate uv build + - name: Generate PEP 740 Attestations + if: steps.check_package.outputs.should_publish == 'true' + uses: astral-sh/attest-action@f589a42a7efb6fe400b4f400de60b4bc90390027 - name: Publish distribution 📦 to TestPyPI if: steps.check_package.outputs.should_publish == 'true' run: | @@ -295,10 +298,10 @@ jobs: - coverage steps: - name: Check out committed code - uses: actions/checkout@v7 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@v2 + uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 83dfd45b9..c02a29bfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.12.1 + +- Add PEP 740 digital attestations (workaround until included in `uv publish`) +- Pin GitHub acions +- Bump our own github actions to pinned tag + ## v1.12.0 - Replace the DHW-comfort-mode switch by a DHW mode selector to match the new HA select or water_heater platform updates, via PR [#883](https://github.com/plugwise/python-plugwise/pull/883) diff --git a/pyproject.toml b/pyproject.toml index 997b1731c..596a10eed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "plugwise" -version = "1.12.0" +version = "1.12.1a0" license = "MIT" description = "Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3." readme = "README.md" From 1f7790978457871f61f2fabeea5f84a9f7a2d459 Mon Sep 17 00:00:00 2001 From: Tom Scholten Date: Sun, 5 Jul 2026 12:02:47 +0000 Subject: [PATCH 2/7] Update own actions --- .github/workflows/verify.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 9e68e4884..97927045b 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -46,7 +46,7 @@ jobs: steps: - name: Prepare code checkout and python/prek(pre-commit) setup id: cache-reuse - uses: plugwise/gh-actions/prepare-python-and-code@72ceb10366b90ac4fe63e27ca70341da283084df + uses: plugwise/gh-actions/prepare-python-and-code@0375df40f07d6f002cb134335a3e3296579ac99b with: cache-key: ${{ needs.cache.outputs.cache-key }} fail-on-miss: false # First time create cache (if not already exists) @@ -67,7 +67,7 @@ jobs: persist-credentials: false - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df + uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -103,7 +103,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df + uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -138,7 +138,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df + uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b with: fail-on-miss: false # First time create cache (if not already exists) cache-key: ${{ needs.cache.outputs.cache-key }} @@ -171,7 +171,7 @@ jobs: persist-credentials: false - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df + uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -216,7 +216,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df + uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -301,7 +301,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@72ceb10366b90ac4fe63e27ca70341da283084df + uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} From 733d508a86c58a01d3b3f8be89bc9026863f15ca Mon Sep 17 00:00:00 2001 From: Tom Scholten Date: Sun, 5 Jul 2026 12:16:26 +0000 Subject: [PATCH 3/7] Update own actions --- .github/workflows/verify.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 97927045b..807160149 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -46,7 +46,7 @@ jobs: steps: - name: Prepare code checkout and python/prek(pre-commit) setup id: cache-reuse - uses: plugwise/gh-actions/prepare-python-and-code@0375df40f07d6f002cb134335a3e3296579ac99b + uses: plugwise/gh-actions/prepare-python-and-code@09054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} fail-on-miss: false # First time create cache (if not already exists) @@ -67,7 +67,7 @@ jobs: persist-credentials: false - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b + uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -103,7 +103,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b + uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -138,7 +138,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b + uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 with: fail-on-miss: false # First time create cache (if not already exists) cache-key: ${{ needs.cache.outputs.cache-key }} @@ -171,7 +171,7 @@ jobs: persist-credentials: false - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b + uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -216,7 +216,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b + uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -301,7 +301,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@0375df40f07d6f002cb134335a3e3296579ac99b + uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} From 94833ee88423b740b67cb3e1f868f02d2063f880 Mon Sep 17 00:00:00 2001 From: Tom Scholten Date: Sun, 5 Jul 2026 12:25:42 +0000 Subject: [PATCH 4/7] Update own actions --- .github/workflows/verify.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 807160149..50bf2707b 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -46,7 +46,7 @@ jobs: steps: - name: Prepare code checkout and python/prek(pre-commit) setup id: cache-reuse - uses: plugwise/gh-actions/prepare-python-and-code@09054f02b05e53697300c41df27d0307332dc7cd8 + uses: plugwise/gh-actions/prepare-python-and-code@9054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} fail-on-miss: false # First time create cache (if not already exists) @@ -67,7 +67,7 @@ jobs: persist-credentials: false - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 + uses: plugwise/gh-actions/restore-venv@9054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -103,7 +103,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 + uses: plugwise/gh-actions/restore-venv@9054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -138,7 +138,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 + uses: plugwise/gh-actions/restore-venv@9054f02b05e53697300c41df27d0307332dc7cd8 with: fail-on-miss: false # First time create cache (if not already exists) cache-key: ${{ needs.cache.outputs.cache-key }} @@ -171,7 +171,7 @@ jobs: persist-credentials: false - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 + uses: plugwise/gh-actions/restore-venv@9054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -216,7 +216,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 + uses: plugwise/gh-actions/restore-venv@9054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} @@ -301,7 +301,7 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Restore cached environment id: cache-reuse - uses: plugwise/gh-actions/restore-venv@09054f02b05e53697300c41df27d0307332dc7cd8 + uses: plugwise/gh-actions/restore-venv@9054f02b05e53697300c41df27d0307332dc7cd8 with: cache-key: ${{ needs.cache.outputs.cache-key }} python-version: ${{ needs.cache.outputs.python-version }} From c7330980b04d2722e7e04c039516e52086799ec2 Mon Sep 17 00:00:00 2001 From: Tom Scholten Date: Sun, 5 Jul 2026 12:31:22 +0000 Subject: [PATCH 5/7] Update shellcheck --- .github/workflows/verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 50bf2707b..94197a817 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -191,7 +191,7 @@ jobs: - name: Check out committed code uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - name: Run ShellCheck - uses: ludeeus/action-shellcheck@master + uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # Check for missing python dependencies dependencies_check: From 280c7b4ff667da1d1cefce104134bb781a3f06d1 Mon Sep 17 00:00:00 2001 From: Tom Scholten Date: Sun, 5 Jul 2026 12:36:04 +0000 Subject: [PATCH 6/7] Bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 596a10eed..2a4605c43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "plugwise" -version = "1.12.1a0" +version = "1.12.1a1" license = "MIT" description = "Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3." readme = "README.md" From 7137dfb31e358d35cc296a89f7a9e15673c0426c Mon Sep 17 00:00:00 2001 From: Tom Scholten Date: Sun, 5 Jul 2026 12:41:35 +0000 Subject: [PATCH 7/7] Revert versions to ongoing, bumping cache --- .github/workflows/merge.yml | 2 +- .github/workflows/verify.yml | 2 +- CHANGELOG.md | 5 ++--- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index d38f89ed1..b5e18ce60 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -4,7 +4,7 @@ name: Latest release env: - CACHE_VERSION: 1 + CACHE_VERSION: 4 DEFAULT_PYTHON: "3.14" # Only run on merges diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 94197a817..e1709ab5e 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -4,7 +4,7 @@ name: Latest commit env: - CACHE_VERSION: 2 + CACHE_VERSION: 4 DEFAULT_PYTHON: "3.14" VENV: venv diff --git a/CHANGELOG.md b/CHANGELOG.md index c02a29bfe..aacc7d943 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,9 @@ # Changelog -## v1.12.1 +## Ongoing - Add PEP 740 digital attestations (workaround until included in `uv publish`) -- Pin GitHub acions -- Bump our own github actions to pinned tag +- Pin GitHub acions including our own from gh-actions ## v1.12.0 diff --git a/pyproject.toml b/pyproject.toml index 2a4605c43..997b1731c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "plugwise" -version = "1.12.1a1" +version = "1.12.0" license = "MIT" description = "Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3." readme = "README.md"