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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

## [1.1.0] - 2026-03-19

### Added
- Canonical `{ receipt, runtime_metadata? }` response model
- Verification targets canonical receipt
- TypeScript and Python SDK parity
- TypeScript CLI support

### Changed
- Normalized response handling to wrapper model
- Improved verification flow alignment with runtime

### Fixed
- No additional fixes recorded in this release note.

### Notes
- Protocol-Commons v1.1.0 is the current supported line
- Commercial support is not yet first-class
- SDK reflects canonical receipt-first architecture
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,5 +166,6 @@ The CLI is intended for demos, CI smoke tests, debugging, and reproducing SDK fl
- Cookbook examples: `EXAMPLES.md`
- Maintainer / architecture notes: `DEVELOPER_EXPERIENCE.md`
- Build, release, and publish flow: `DEPLOYMENT_GUIDE.md`
- Changelog: `CHANGELOG.md`
- TypeScript package docs: `typescript-sdk/README.md`
- Python package docs: `python-sdk/README.md`
5 changes: 3 additions & 2 deletions python-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ dev = [
]

[project.urls]
Homepage = "https://commandlayer.org"
Documentation = "https://github.com/commandlayer/sdk/tree/main/python-sdk"
Homepage = "https://github.com/commandlayer/sdk"
Repository = "https://github.com/commandlayer/sdk"
Documentation = "https://github.com/commandlayer/sdk#readme"
Changelog = "https://github.com/commandlayer/sdk/blob/main/CHANGELOG.md"
Issues = "https://github.com/commandlayer/sdk/issues"

[tool.setuptools.packages.find]
Expand Down
3 changes: 2 additions & 1 deletion typescript-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
},
"devDependencies": {
"tsup": "^8.2.4",
"typescript": "^5.6.3"
"typescript": "^5.6.3",
"@types/node": "^20.17.0"
}
}
Loading