acp_sdk_async 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +1 -1
- data/lib/acp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e7a77a4ff3b48bec1b9c425e06b3f9ebe113a9fde650079f5b8107843c582b8
|
|
4
|
+
data.tar.gz: b46eccd831fdeeadc419458e4ff651a12ee73c5de898fafb4f225f0746de07c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00e7205b711b6860d6c49b2433805ce8507a75e0623d237aeeb24ad98608e371e7506c16818404ec6637e93d1b57c576bbaa8aa2c8f1b2421f3e49ece01ee0fb
|
|
7
|
+
data.tar.gz: 5b3d55cd976fabc9e4081d1558d0268d7c659c1ed6f6f246e417d11ec8cd42f4287ebcb0abbace7776bfee4777941edd3bbfa02a6c9348391b31483df55eb9fd
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.3.3]
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- README now states the vendored schema version (`schema-v1.21.0`);
|
|
10
|
+
a test enforces it stays in sync with `SCHEMA_REF`.
|
|
11
|
+
|
|
5
12
|
## [0.3.2]
|
|
6
13
|
|
|
7
14
|
### Added
|
data/README.md
CHANGED
|
@@ -132,7 +132,7 @@ Logging goes through `ACP.logger` (a `Logger`, `WARN` level by default); assign
|
|
|
132
132
|
|
|
133
133
|
## Updating the schema
|
|
134
134
|
|
|
135
|
-
`schema/schema.json`, `schema/meta.json` and `schema/VERSION` are vendored from the [ACP repository](https://github.com/agentclientprotocol/agent-client-protocol). After replacing them run:
|
|
135
|
+
`schema/schema.json`, `schema/meta.json` and `schema/VERSION` are vendored from the [ACP repository](https://github.com/agentclientprotocol/agent-client-protocol). Currently vendored: `schema-v1.21.0`. After replacing them run:
|
|
136
136
|
|
|
137
137
|
```bash
|
|
138
138
|
bundle exec rake gen_schema
|
data/lib/acp/version.rb
CHANGED