diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0c590d7..e85146e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -30,7 +30,7 @@ body: If applicable, provide the version number or release tag where this issue was encountered options: - - v1.1.0 + - v1.1.1 default: 0 validations: required: false diff --git a/.github/workflows/reusable-release-sdk.yaml b/.github/workflows/reusable-release-sdk.yaml new file mode 100644 index 0000000..7243ab0 --- /dev/null +++ b/.github/workflows/reusable-release-sdk.yaml @@ -0,0 +1,34 @@ +# Copyright AGNTCY Contributors (https://github.com/agntcy) +# SPDX-License-Identifier: Apache-2.0 + +name: Release SDK + +on: + workflow_dispatch: + +permissions: + contents: read + id-token: write # Required for npm OIDC trusted publishing + +jobs: + python: + name: Python + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + fetch-depth: 0 + + - name: Install Task + uses: go-task/setup-task@3be4020d41929789a01026e0e427a4321ce0ad44 #v2.0.0 + + - name: Build the Python package + run: | + task sdk:build:python + + - name: Publish the Python SDK + env: + UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }} + run: | + task sdk:release:python diff --git a/CHANGELOG.md b/CHANGELOG.md index 7054f5e..37d3a6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ [agntcy/dir]: https://github.com/agntcy/dir [agntcy/dir-sdk-python]: https://github.com/agntcy/dir-sdk-python -## 1.1.0 (2026-04-02) +## 1.1.1 (2026-04-02) ### Added diff --git a/pyproject.toml b/pyproject.toml index 7d6e3d6..4782661 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] -name = "dir-sdk-python" -version = "1.1.0" +name = "agntcy-dir" +version = "1.1.1" description = "Directory SDK" readme = "README.md" requires-python = ">=3.10" diff --git a/uv.lock b/uv.lock index 2e8d175..28a5339 100644 --- a/uv.lock +++ b/uv.lock @@ -230,7 +230,7 @@ wheels = [ [[package]] name = "dir-sdk-python" -version = "1.1.0" +version = "1.1.1" source = { editable = "." } dependencies = [ { name = "agntcy-dir-grpc-python" },