beni 0.10.0 → 0.11.0
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 +19 -0
- data/lib/beni/version.rb +1 -1
- data/scripts/cloud_setup.sh +25 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18eb9b13e83616649552b4bf7a560f745187baff1fb89766aa0ce28a4085c97f
|
|
4
|
+
data.tar.gz: 701833de6976853a71f4facf1375196f0fd1eb36669176cd20d0f7227171abb3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fbefdb61247ef7ca05e3587a77da36ec7da47af70a8f758864a56558621173e4570f4854010a39e1e9669f22e2cdab313d6a602ff79210a14d8cfbb0f1c8bb7
|
|
7
|
+
data.tar.gz: ab17c324ce5f7d4db36428a56479cd65e3079898c52e57912f2bf43cb00a4abc507cbad9f785e5dd26cca5e813f8032b2a09ccbb4204d7523b8353089e0f141e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.11.0](https://github.com/elct9620/beni/compare/v0.10.0...v0.11.0) (2026-09-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **beni:** let the caller place the memory the collector carves ([737c09a](https://github.com/elct9620/beni/commit/737c09a8c78ae65aaa21ca32a9e8787e5b48c1c8))
|
|
9
|
+
* **beni:** release one root without releasing another's ([05d8b4b](https://github.com/elct9620/beni/commit/05d8b4b766f087a5c5dd09a983096d8e4fb11e40))
|
|
10
|
+
* **beni:** root a value for the interpreter's lifetime ([6a9777d](https://github.com/elct9620/beni/commit/6a9777d9ccc049c2a77588e217ee8822bc5775bb))
|
|
11
|
+
* **coverage:** derive alias coverage from the headers ([0b09e18](https://github.com/elct9620/beni/commit/0b09e18ab5702f3d48e74c2a78dc9f480c372d2a))
|
|
12
|
+
* **coverage:** rank the worklist by the consumers beni exists for ([5873287](https://github.com/elct9620/beni/commit/587328701fbac7ae3f010aaeb345065596a40485))
|
|
13
|
+
* **coverage:** record why a symbol sits outside the measure ([d950f62](https://github.com/elct9620/beni/commit/d950f62df87f63b714cf07096f5809b2b0e4f55a))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **api:** rank by the mrbgems the build activates ([bbed32d](https://github.com/elct9620/beni/commit/bbed32dd420beeeb2b4230aec846c4263117487d))
|
|
19
|
+
* **coverage:** hold the alias gate where its evidence is ([7cf2aa1](https://github.com/elct9620/beni/commit/7cf2aa1fc9d912f7e622689ba4a76acd8e51d402))
|
|
20
|
+
* **coverage:** reject a classification with nothing behind it ([2362939](https://github.com/elct9620/beni/commit/2362939397130d83bf942bd22a76e5cdd584c170))
|
|
21
|
+
|
|
3
22
|
## [0.10.0](https://github.com/elct9620/beni/compare/v0.9.0...v0.10.0) (2026-07-18)
|
|
4
23
|
|
|
5
24
|
|
data/lib/beni/version.rb
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
# Cloud session bootstrap
|
|
3
|
+
# =======================
|
|
4
|
+
#
|
|
5
|
+
# A cloud session starts from a fresh VM holding nothing but a clone, so
|
|
6
|
+
# everything the task surface expects from a working checkout is rebuilt
|
|
7
|
+
# here. A local checkout keeps its own, so the script stops unless it is
|
|
8
|
+
# running in the cloud.
|
|
9
|
+
set -euo pipefail
|
|
10
|
+
|
|
11
|
+
[ "${CLAUDE_CODE_REMOTE:-}" = "true" ] || exit 0
|
|
12
|
+
|
|
13
|
+
cd "$CLAUDE_PROJECT_DIR"
|
|
14
|
+
|
|
15
|
+
# The default rake task and every hook run through bundler.
|
|
16
|
+
bundle check >/dev/null 2>&1 || bundle install
|
|
17
|
+
|
|
18
|
+
# The coverage measure reads its inventory from the vendored mruby headers,
|
|
19
|
+
# and the session's egress serves the git protocol but not source archives —
|
|
20
|
+
# so the source arrives by clone here, at the version the gem pins.
|
|
21
|
+
if [ ! -d vendor/mruby ]; then
|
|
22
|
+
version="$(ruby -Ilib -rbeni/vendor -e 'print Beni::Vendor::BUILT_IN_PAIRS.fetch("mruby").fetch(:version)')"
|
|
23
|
+
GIT_LFS_SKIP_SMUDGE=1 git -c advice.detachedHead=false clone --quiet --depth 1 \
|
|
24
|
+
--branch "$version" https://github.com/mruby/mruby.git vendor/mruby
|
|
25
|
+
fi
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beni
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aotokitsuruya
|
|
@@ -54,6 +54,7 @@ files:
|
|
|
54
54
|
- lib/beni/vendor/toolchain.rb
|
|
55
55
|
- lib/beni/vendor/toolchains/wasi.rake
|
|
56
56
|
- lib/beni/version.rb
|
|
57
|
+
- scripts/cloud_setup.sh
|
|
57
58
|
- sig/beni.rbs
|
|
58
59
|
- sig/beni/build_config.rbs
|
|
59
60
|
- sig/beni/builder.rbs
|