Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/reusable-release-sdk.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading