kobako 0.18.0-aarch64-linux → 0.19.0-aarch64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3d3a966a5daad9bfb2b5cf7028fb6a4dddc6ac35aa78c98e422bb002fd5a2a16
4
- data.tar.gz: 8e30613f0ad120fe93018dfe21941b7efc3df089a423cc3b060a435dcf7a5426
3
+ metadata.gz: 5c5d8b9dc269e7579dbcfc7718f24dc7e9d715504e249d55ed82b6e1f8116c5c
4
+ data.tar.gz: 9c2027efa1ba39ab0f00efa45efe7b78b2f41f88fc13a40d1ddbffa3669c251d
5
5
  SHA512:
6
- metadata.gz: e532f115cb783909d7d8f858ed88ca3f1ebbb9221cb8ab16f2194197647f19b7aeeb07152877e2d4671845e364776b1c286c4db98fb16b756fb71b9cbb03fe14
7
- data.tar.gz: b48605e8cd709a5b7cef9648d245c215eae4191d9bc2941fe8ead0e560c4cfe704eaf44d98309490f37f45705c385c1055ac8ed9388a05703a08c01d82299a05
6
+ metadata.gz: 6d46f6cd644c63213ee5f706753e5ed1cc4d2f535bd595b8047b6206a6a16d1a13f8c44fd34f8ad1dbf99a32678a69d5bb68de644917f4092320028753c35b6d
7
+ data.tar.gz: f845f7ce1364282a5be2cdf430a4d2c1a77e1181b54a3d5aa4b83a0765733d88920ef018316d5b761dcafebbddf647ac7c814ac0ff21399afa42f5a560646b91
@@ -1 +1 @@
1
- {".":"0.18.0","wasm/kobako-core":"0.10.2","wasm/kobako-mruby":"0.10.2","wasm/kobako-io":"0.10.2","wasm/kobako-json":"0.10.2","wasm/kobako-regexp":"0.10.2","wasm/kobako-baker":"0.10.2","crates/kobako-codec":"0.10.2","crates/kobako-runtime":"0.10.2","crates/kobako-wasmtime":"0.10.2","crates/kobako":"0.10.2"}
1
+ {".":"0.19.0","wasm/kobako-core":"0.11.0","wasm/kobako-mruby":"0.11.0","wasm/kobako-io":"0.11.0","wasm/kobako-json":"0.11.0","wasm/kobako-regexp":"0.11.0","wasm/kobako-baker":"0.11.0","crates/kobako-codec":"0.11.0","crates/kobako-runtime":"0.11.0","crates/kobako-wasmtime":"0.11.0","crates/kobako":"0.11.0"}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.19.0](https://github.com/elct9620/kobako/compare/v0.18.0...v0.19.0) (2026-07-19)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * **readme:** guest scripts using `class X < Kobako::Member` must switch to `extend Kobako::Proxy`; Kobako::Member no longer exists in the guest.
9
+
10
+ ### Bug Fixes
11
+
12
+ * **readme:** switch the Extension File idiom off the removed Kobako::Member ([0d96b9e](https://github.com/elct9620/kobako/commit/0d96b9eafed11df6fa030c38f93b2a0e9b190ed8))
13
+
3
14
  ## [0.18.0](https://github.com/elct9620/kobako/compare/v0.17.0...v0.18.0) (2026-07-18)
4
15
 
5
16
 
data/README.md CHANGED
@@ -388,7 +388,8 @@ An Extension teaches the guest a native-style constant by pairing a guest idiom
388
388
 
389
389
  ```ruby
390
390
  FILE = <<~'MRUBY'
391
- class File < Kobako::Member
391
+ class File
392
+ extend Kobako::Proxy
392
393
  def self.basename(path) = path.split("/").last || "" # pure: runs in-guest
393
394
  # read / write are undefined here, so they dispatch to the backend
394
395
  end
@@ -476,6 +477,8 @@ Building from source requires a WASI-capable Rust toolchain in addition to the s
476
477
 
477
478
  Bug reports and pull requests are welcome at <https://github.com/elct9620/kobako>. Please open an issue before starting on non-trivial changes so we can align on scope.
478
479
 
480
+ Releases are automated with release-please across two tracks — the gem and the linked guest-crate group. The version rules, commit conventions, and how to cut each release live in [`docs/releasing.md`](docs/releasing.md).
481
+
479
482
  ## License
480
483
 
481
484
  Kobako is released under the [Apache License 2.0](https://opensource.org/licenses/Apache-2.0).
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.11.0](https://github.com/elct9620/kobako/compare/kobako-runtime-v0.10.2...kobako-runtime-v0.11.0) (2026-07-19)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **kobako-runtime:** Synchronize kobako crates versions
9
+
3
10
  ## [0.10.2](https://github.com/elct9620/kobako/compare/kobako-runtime-v0.10.1...kobako-runtime-v0.10.2) (2026-07-18)
4
11
 
5
12
 
@@ -26,7 +26,7 @@ map the neutral types onto their own language surface.
26
26
 
27
27
  ```toml
28
28
  [dependencies]
29
- kobako-runtime = "0.10.2" # x-release-please-version
29
+ kobako-runtime = "0.11.0" # x-release-please-version
30
30
  ```
31
31
 
32
32
  ## License
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.11.0](https://github.com/elct9620/kobako/compare/kobako-wasmtime-v0.10.2...kobako-wasmtime-v0.11.0) (2026-07-19)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **kobako-wasmtime:** Synchronize kobako crates versions
9
+
3
10
  ## [0.10.2](https://github.com/elct9620/kobako/compare/kobako-wasmtime-v0.10.1...kobako-wasmtime-v0.10.2) (2026-07-18)
4
11
 
5
12
 
@@ -24,7 +24,7 @@ SDK consumes the same surface.
24
24
 
25
25
  ```toml
26
26
  [dependencies]
27
- kobako-wasmtime = "0.10.2" # x-release-please-version
27
+ kobako-wasmtime = "0.11.0" # x-release-please-version
28
28
  ```
29
29
 
30
30
  ## License
data/data/kobako.wasm CHANGED
Binary file
Binary file
Binary file
Binary file
@@ -47,7 +47,7 @@ module Kobako
47
47
  # #invalidate!. The ok value is consumed by the host Service
48
48
  # method, so a Capability Handle in it is restored to its host object.
49
49
  # The break value unwinds past the Service back to the guest
50
- # Member call, so it passes through verbatim — a Handle stays a
50
+ # bound-constant call, so it passes through verbatim — a Handle stays a
51
51
  # Handle and rides back on the same id rather than churning a new one.
52
52
  def yield(*args)
53
53
  raise LocalJumpError, "guest block invoked after host dispatch frame returned" unless @active
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Kobako
4
- VERSION = "0.18.0"
4
+ VERSION = "0.19.0"
5
5
  end
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3
3
  "release-type": "ruby",
4
+ "bump-minor-pre-major": true,
4
5
  "last-release-sha": "98509af508988f708bf0d7a76a718bb0428a177e",
5
6
  "packages": {
6
7
  ".": {
7
8
  "component": "kobako",
8
9
  "include-component-in-tag": false,
9
10
  "release-type": "ruby",
10
- "exclude-paths": ["wasm"]
11
+ "exclude-paths": ["wasm", "crates"]
11
12
  },
12
13
  "wasm/kobako-core": {
13
14
  "component": "kobako-core",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kobako
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.0
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Aotokitsuruya
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-07-18 00:00:00.000000000 Z
11
+ date: 2026-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: msgpack