From 02d138f5b2c4e94fcd8f8111b451bc30d8ae6eb1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Mar 2026 01:21:34 +0000 Subject: [PATCH 1/2] chore(main): release 0.1.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ Dockerfile | 2 +- charts/github-sts/Chart.yaml | 4 ++-- pyproject.toml | 2 +- src/github_sts/__init__.py | 2 +- 6 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8723596..d3e64db 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.1.1", + ".": "0.1.2", "charts/github-sts": "0.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 58e5c6a..cce6219 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.1.2](https://github.com/AlexandreODelisle/py-github-sts/compare/v0.1.1...v0.1.2) (2026-03-10) + + +### Features + +* add a helm chart and documentation ([#13](https://github.com/AlexandreODelisle/py-github-sts/issues/13)) ([e4ba4ef](https://github.com/AlexandreODelisle/py-github-sts/commit/e4ba4ef9f707e38fee7fa089309a49f8fe8838e7)) + + +### Bug Fixes + +* correct helm workflow and add summary and attestation for docker ([#23](https://github.com/AlexandreODelisle/py-github-sts/issues/23)) ([f007bb7](https://github.com/AlexandreODelisle/py-github-sts/commit/f007bb7aa3d1a42fb1052e2286c0d1ac77d4b7ea)) +* workflow name in uses for release-please ([#20](https://github.com/AlexandreODelisle/py-github-sts/issues/20)) ([f2b3a84](https://github.com/AlexandreODelisle/py-github-sts/commit/f2b3a84cae65fba3693a73b33d853a0da721b92f)) + ## [0.1.1](https://github.com/AlexandreODelisle/py-github-sts/compare/v0.1.0...v0.1.1) (2026-03-07) diff --git a/Dockerfile b/Dockerfile index fa66a36..3b596dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ FROM python:3.14-slim AS runtime LABEL maintainer="Alexandre Delisle " LABEL description="GitHub Security Token Service (STS) - OIDC to GitHub token exchange" # x-release-please-start-version -LABEL version="0.1.1" +LABEL version="0.1.2" # x-release-please-end # Create a non-root user for security diff --git a/charts/github-sts/Chart.yaml b/charts/github-sts/Chart.yaml index ef8bdc8..b323333 100644 --- a/charts/github-sts/Chart.yaml +++ b/charts/github-sts/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: github-sts-chart description: GitHub Security Token Service (STS) - OIDC to GitHub token exchange type: application -version: 0.1.1 -appVersion: "0.1.1" +version: 0.1.2 +appVersion: 0.1.1 keywords: - github - oidc diff --git a/pyproject.toml b/pyproject.toml index ddf3441..d65394c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "github-sts" -version = "0.1.1" +version = "0.1.2" description = "A Python Security Token Service (STS) for the GitHub API" readme = "README.md" requires-python = ">=3.14" diff --git a/src/github_sts/__init__.py b/src/github_sts/__init__.py index 2e101b1..00638fe 100644 --- a/src/github_sts/__init__.py +++ b/src/github_sts/__init__.py @@ -1,3 +1,3 @@ """GitHub STS package.""" -__version__ = "0.1.1" # x-release-please-version +__version__ = "0.1.2" # x-release-please-version From 10621740da3a25bcf7d371f408aa8b730eb2523d Mon Sep 17 00:00:00 2001 From: Alexandre Delisle <39196192+AlexandreODelisle@users.noreply.github.com> Date: Mon, 9 Mar 2026 21:44:45 -0400 Subject: [PATCH 2/2] Bump appVersion to 0.1.2 in Chart.yaml --- charts/github-sts/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/github-sts/Chart.yaml b/charts/github-sts/Chart.yaml index b323333..8e74fe9 100644 --- a/charts/github-sts/Chart.yaml +++ b/charts/github-sts/Chart.yaml @@ -3,7 +3,7 @@ name: github-sts-chart description: GitHub Security Token Service (STS) - OIDC to GitHub token exchange type: application version: 0.1.2 -appVersion: 0.1.1 +appVersion: 0.1.2 keywords: - github - oidc