From 60332a44bcc55ecba4b22b288fb9d5c7da31ee06 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Sun, 24 Nov 2024 11:18:06 -0500 Subject: [PATCH 1/4] ci: workflows/release: remove old signing step We use PEP 740 attestations now. --- .github/workflows/release.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df61068..4056719 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -105,9 +105,3 @@ jobs: - name: publish uses: pypa/gh-action-pypi-publish@v1.12.2 - - - name: sign - uses: sigstore/gh-action-sigstore-python@v3.0.0 - with: - inputs: ./dist/*.tar.gz ./dist/*.whl - release-signing-artifacts: true From ddce4f35de0acfa059a8eca3acb3c7e4211f2d00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 11:47:05 -0500 Subject: [PATCH 2/4] build(deps): bump pypa/gh-action-pypi-publish in the actions group (#93) Bumps the actions group with 1 update: [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `pypa/gh-action-pypi-publish` from 1.12.2 to 1.12.3 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.12.2...v1.12.3) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/release-stubs.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-stubs.yml b/.github/workflows/release-stubs.yml index ea09138..6d39ed5 100644 --- a/.github/workflows/release-stubs.yml +++ b/.github/workflows/release-stubs.yml @@ -50,6 +50,6 @@ jobs: - name: publish if: ${{ !inputs.dry-run }} - uses: pypa/gh-action-pypi-publish@v1.12.2 + uses: pypa/gh-action-pypi-publish@v1.12.3 with: attestations: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4056719..2a18b26 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -104,4 +104,4 @@ jobs: merge-multiple: true - name: publish - uses: pypa/gh-action-pypi-publish@v1.12.2 + uses: pypa/gh-action-pypi-publish@v1.12.3 From d97beec63c44a30eb000d1357bb01c728bfdcc91 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Thu, 19 Dec 2024 01:37:42 +0000 Subject: [PATCH 3/4] deps: bump age to 0.11.1 (#95) Signed-off-by: William Woodruff --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a08ad90..e1e8e74 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "aead" @@ -39,9 +39,9 @@ dependencies = [ [[package]] name = "age" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2020562e68d7a02c2743707b262c62484b340a296924a5e4146d5a0a96ca8103" +checksum = "57fc171f4874fa10887e47088f81a55fcf030cd421aa31ec2b370cafebcc608a" dependencies = [ "aes", "aes-gcm", diff --git a/Cargo.toml b/Cargo.toml index 9ae4502..adcae10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ crate-type = ["cdylib"] [dependencies] age-core = "0.11" -age = { version = "0.11", features = ["ssh", "plugin"] } +age = { version = "0.11.1", features = ["ssh", "plugin"] } pyo3 = { version = "0.22.6", features = [ "extension-module", "abi3", From 2a9bffd953403684b384b95ca93e345b3ecc9bd5 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Thu, 19 Dec 2024 01:38:54 +0000 Subject: [PATCH 4/4] prep 1.2.3 Signed-off-by: William Woodruff --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e1e8e74..6190259 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -974,7 +974,7 @@ dependencies = [ [[package]] name = "pyrage" -version = "1.2.2" +version = "1.2.3" dependencies = [ "age", "age-core", diff --git a/Cargo.toml b/Cargo.toml index adcae10..95e5a19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyrage" -version = "1.2.2" +version = "1.2.3" authors = ["William Woodruff "] edition = "2021" description = "Python bindings for rage (age in Rust)"