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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
### Deprecated
- `VERIFICATION_COMPUTE_UNITS` in `sdk/src/constants.ts` — use `RECOMMENDED_CU_COMPLETE_TASK_PRIVATE` instead. Removal planned for v2.0.0. (#983)

## [1.4.0] - 2026-04-12

### Added
- Marketplace V2 bid flows and expanded devnet validation tooling.
- Task validation v2 client helpers and public docs for the validation surface.

### Fixed
- Refreshed Anchor error decoding and dispute/expiry account handling for current protocol flows.

## [1.3.1] - 2026-03-20

### Changed
Expand Down
2 changes: 1 addition & 1 deletion docs/api-baseline/sdk.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"package": "@tetsuo-ai/sdk",
"version": "1.3.1",
"version": "1.4.0",
"generatedAt": "2026-03-21T13:55:39.039Z",
"entryPoint": "src/index.ts",
"exports": [
Expand Down
2 changes: 1 addition & 1 deletion examples/private-task-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "tsx index.ts"
},
"dependencies": {
"@tetsuo-ai/sdk": "1.3.1",
"@tetsuo-ai/sdk": "1.4.0",
"@solana/web3.js": "^1.98.4"
},
"devDependencies": {
Expand Down
19 changes: 2 additions & 17 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tetsuo-ai/sdk",
"version": "1.3.1",
"version": "1.4.0",
"description": "TypeScript SDK for AgenC - Privacy-preserving agent coordination on Solana",
"packageManager": "[email protected]",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const SDK_PROTOCOL_VERSION = 1;
export const SDK_MIN_PROTOCOL_VERSION = 1;

/** Human-readable SDK package version. Keep in sync with package.json. */
export const SDK_PACKAGE_VERSION = "1.3.1";
export const SDK_PACKAGE_VERSION = "1.4.0";

const FEATURE_REGISTRY: Record<number, Partial<FeatureFlags>> = {
1: {
Expand Down
Loading