beni 0.1.0 → 0.2.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 +9 -0
- data/README.md +0 -9
- data/lib/beni/builder.rb +2 -3
- data/lib/beni/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: 88a0b6ec4613b616c2986f45f387babd0e87fa3bf1f76f5941482b5fb5c2d430
|
|
4
|
+
data.tar.gz: b234beff1815a8cb5e8d6453271095becdf572bd59e8ee90ff66442523ab2da8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e60211cb4e4233b53b43a6271cec44f076c8a586e6686c497cc56403f50dcf64f2418aab35a2c0d607b3540fbf9bc41c724467e6dbb01bf7e432a8fbdfaab265
|
|
7
|
+
data.tar.gz: d90c527587589c8392c5bf1bfe550ea337e8f9fa6a035ca67b40b5455f0d95ea4e377c55c27da210e580767e8681ef991feb1a9f6bc1c8e188eaa9c14a7b603b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.0](https://github.com/elct9620/beni/compare/v0.1.0...v0.2.0) (2026-06-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **beni:** add ArenaScope for GC arena bracketing ([ec8e1e4](https://github.com/elct9620/beni/commit/ec8e1e416e3a4dc2433281dfe9945916fcf98081))
|
|
9
|
+
* **beni:** add Module::define_private_method ([86c5d24](https://github.com/elct9620/beni/commit/86c5d241aea6ecd27d73bcdcf37678d07fa054fc))
|
|
10
|
+
* **beni:** add Mrb::gv_get as the read counterpart of gv_set ([55f1bf0](https://github.com/elct9620/beni/commit/55f1bf024f1ab761450f602f9aa2f2f29932d25d))
|
|
11
|
+
|
|
3
12
|
## 0.1.0 (2026-06-06)
|
|
4
13
|
|
|
5
14
|
|
data/README.md
CHANGED
|
@@ -153,15 +153,6 @@ bundle exec rake rust:verify # beni:build + check/test (host) + check (wasm32)
|
|
|
153
153
|
Behavior contracts live in `SPEC.md` — the source of truth the
|
|
154
154
|
implementation follows.
|
|
155
155
|
|
|
156
|
-
## Releasing
|
|
157
|
-
|
|
158
|
-
Releases are cut by release-please: merging the release PR tags the
|
|
159
|
-
version and publishes the gem and both crates in lockstep through OIDC
|
|
160
|
-
trusted publishing. One-time cleanup: after 0.1.0 ships, remove the
|
|
161
|
-
`release-as` line (and the then-stale `last-release-sha`) from
|
|
162
|
-
`release-please-config.json` — left in place it pins every subsequent
|
|
163
|
-
release to 0.1.0.
|
|
164
|
-
|
|
165
156
|
## Contributing
|
|
166
157
|
|
|
167
158
|
Bug reports and pull requests are welcome on GitHub at
|
data/lib/beni/builder.rb
CHANGED
|
@@ -40,9 +40,8 @@ module Beni
|
|
|
40
40
|
# True when every target's artifacts — +libmruby.a+ plus the
|
|
41
41
|
# +libmruby.flags.mak+ sidecar +beni-sys+ parses for ABI alignment
|
|
42
42
|
# — are already present, letting callers skip the build without
|
|
43
|
-
# spawning a subprocess. An archive without its sidecar
|
|
44
|
-
#
|
|
45
|
-
# rebuild, which is incremental and only emits the missing file.
|
|
43
|
+
# spawning a subprocess. An archive without its sidecar triggers
|
|
44
|
+
# a rebuild, which is incremental and only emits the missing file.
|
|
46
45
|
def built?
|
|
47
46
|
artifact_paths.all? { |path| File.exist?(path) }
|
|
48
47
|
end
|
data/lib/beni/version.rb
CHANGED