beni 0.3.0 → 0.4.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 +8 -0
- data/README.md +5 -0
- 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: a4ff817788cfe4164e2ee142351020c5f08b7b786dd346933b41fbc9b86a974d
|
|
4
|
+
data.tar.gz: 1077803bcb92a17ca2b0cf9ff4982c58745be8f05cdc4f558d6411ba69a76430
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55f416f4cd75036e930fd7d09810abf0350e04d151d08389dca38a6f6dde8f7c54689d831486ec91aafd7e4f498124226d4adb1151f8a52e0381e10af3306186
|
|
7
|
+
data.tar.gz: 7ae2dbe8d979cbefe6e4bd46a2f5b386d4626c31cffa700570a5008eaeafa0c18538cc3612cbc1f4acd7ea3158102abdcbe8a2c1c69e18d4f926926bd91c3953
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.0](https://github.com/elct9620/beni/compare/v0.3.0...v0.4.0) (2026-06-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **beni:** add a typed Proc handle with a protected yield ([e69aee7](https://github.com/elct9620/beni/commit/e69aee7ca572c2aac1e8ec9c24912f854934f5ee))
|
|
9
|
+
* **beni:** expose the break view and current call-info index ([30161c6](https://github.com/elct9620/beni/commit/30161c6bf58d6bc277546ae8f39aa3dc299d8425))
|
|
10
|
+
|
|
3
11
|
## [0.3.0](https://github.com/elct9620/beni/compare/v0.2.0...v0.3.0) (2026-06-07)
|
|
4
12
|
|
|
5
13
|
|
data/README.md
CHANGED
|
@@ -6,6 +6,11 @@ the resulting `libmruby.a`. Extracted from the
|
|
|
6
6
|
[kobako](https://github.com/elct9620/kobako) project; APIs follow 0.x semver
|
|
7
7
|
semantics and may still evolve between minor versions.
|
|
8
8
|
|
|
9
|
+
> [!WARNING]
|
|
10
|
+
> The `beni` crate does not yet cover the full mruby C API. Anything missing
|
|
11
|
+
> stays reachable through the unsafe `beni::sys` escape hatch — issue reports
|
|
12
|
+
> for the gaps you hit are welcome.
|
|
13
|
+
|
|
9
14
|
## Packages
|
|
10
15
|
|
|
11
16
|
All three packages release in lockstep under a single version.
|
data/lib/beni/version.rb
CHANGED