ask-acp 0.1.2 → 0.1.4

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +23 -0
  3. data/lib/ask/acp/version.rb +1 -1
  4. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd22248dd65fb612b9ff352e2278bc7ed8d0e2c8b86bd6e31f89752cf7b094cb
4
- data.tar.gz: d9d788c986270c49e7469a877215c07f12f43e2911099b1ae06211894d400b5b
3
+ metadata.gz: bf87b2732e560c05465a8736015402531ab5d62b8cb6fe59dfa312fa4cc9bbe5
4
+ data.tar.gz: ec393d18e69c7302b4e929169f200791c9b2cc87e39451d148c750bb12c910a4
5
5
  SHA512:
6
- metadata.gz: 33bcddcd90137d5ae67e565030a6051ef1a910d1bc102096a03e2cf2d30316c3d7e9fa89d1bf35fda9bb8f4eac06c3a94b7d0602fc12fb5eb876bfa872c0963d
7
- data.tar.gz: 5ed550a8037651b58e72037d728b592a44ac116e4b29dfceac2134a24c1f308b8a04ae171693ef61e6730a626f43c78d8e75871750892ed7460b6bef6f68783a
6
+ metadata.gz: dbd714cdf7f74706e713e076daf2cefda74852ae56cbdca2a0626c84b511f3e223232a2dda9e52d96909ef8e0dd176c4531403ef437d87c0d030c2c90c9da714
7
+ data.tar.gz: c6f506d83227c23978df1107762ca46076d69ad415f830af17195f554e9efea0f86a31a91103806924b4f633a81319c480c430ed9e617f7d2257a9c44bbe1950
data/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ All notable changes to ask-acp are documented here, following
4
+ the keep-a-changelog format.
5
+
6
+ ## [Unreleased]
7
+
8
+ ## [0.1.2] - 2026-09-04
9
+
10
+ ### Fixed
11
+
12
+ - Repository hygiene: added CI workflow (Ruby 3.2–3.4 matrix) and
13
+ release docs to match the other ask-rb gems.
14
+
15
+ ## [0.1.0] - 2026-08-11
16
+
17
+ ### Added
18
+
19
+ - Ruby implementation of the Agent Client Protocol (ACP): JSON-RPC 2.0
20
+ over stdio, following the v0.11.3 protocol schema.
21
+ - Client that drives an ACP-compliant coding agent as a subprocess.
22
+ - Server base class for making a Ruby agent speak ACP.
23
+ - Replay client for deterministic testing.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ask
4
4
  module ACP
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ask-acp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaka Ruto
@@ -89,6 +89,7 @@ executables:
89
89
  extensions: []
90
90
  extra_rdoc_files: []
91
91
  files:
92
+ - CHANGELOG.md
92
93
  - LICENSE
93
94
  - README.md
94
95
  - exe/record_acp
@@ -117,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
118
  - !ruby/object:Gem::Version
118
119
  version: '0'
119
120
  requirements: []
120
- rubygems_version: 4.0.3
121
+ rubygems_version: 4.0.18
121
122
  specification_version: 4
122
123
  summary: Agent Client Protocol for Ruby
123
124
  test_files: []