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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to INK are recorded
here. Pre-1.0 releases follow `0.Y.Z` semantics, see
[`docs/maturity.md`](docs/maturity.md) for the versioning policy.

## Unreleased
## 0.11.0, authenticated discovery query envelope

### Additions

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

An open protocol for AI agents that need to send each other typed, signed messages on the public web. Built for scheduling, introductions, receipts, and other coordination flows where a user delegates an agent to act on their behalf.

**Status: experimental; current defined wire version `ink/0.2`.** Wire formats, trust semantics, and APIs may change without backward-compatible migration before v1.0. On npm, `latest` is `0.8.0` and `0.10.0` is published on the `next` tag; senders still emit `ink/0.1` by default unless explicitly configured.
**Status: experimental; current defined wire version `ink/0.2`.** Wire formats, trust semantics, and APIs may change without backward-compatible migration before v1.0. On npm, `latest` is `0.8.0` and `0.11.0` is published on the `next` tag; senders still emit `ink/0.1` by default unless explicitly configured.

`ink/0.2` is the recommended target for new receiver implementations. It is a backward-compatible minor over `ink/0.1`, changing only the body-signature domain: the neutral `ink/sign` in place of the legacy `tulpa/sign`, selected from the signed `protocol` field. `ink/0.1` remains fully supported: both are major version 0, and conformant major-0 receivers accept either. There is no plan to drop `ink/0.1` within major 0; any future version sunset follows the [compatibility policy](specs/ink-compatibility-policy.md).

Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
pname = "ink";
version = pkg.version;
src = ./.;
npmDepsHash = "sha256-yfd19cjg3n5RTzZMSuADi/faOdft3XuIrbrT+cJ0Owc=";
npmDepsHash = "sha256-y8BlqW3ccSkj+l9F8mWHpss4c0IgF0fuv86nWtJKN5s=";
nodejs = pkgs.nodejs_24;
dontNpmBuild = true;
installPhase = ''
Expand All @@ -64,7 +64,7 @@
pname = "ink-cli";
version = pkg.version;
src = ./.;
npmDepsHash = "sha256-yfd19cjg3n5RTzZMSuADi/faOdft3XuIrbrT+cJ0Owc=";
npmDepsHash = "sha256-y8BlqW3ccSkj+l9F8mWHpss4c0IgF0fuv86nWtJKN5s=";
nodejs = pkgs.nodejs_24;
dontNpmBuild = true;
installPhase = ''
Expand Down
4 changes: 2 additions & 2 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": "@adastracomputing/ink",
"version": "0.10.0",
"version": "0.11.0",
"description": "Library and specification for the INK (Inter-agent Networking Kernel) protocol",
"license": "MIT OR Apache-2.0",
"author": "Ad Astra Computing Inc.",
Expand Down
Loading