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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00e30de96873f6115a6775bfbd2e6ec02ab3faccf013459ee379722069059542
4
- data.tar.gz: 84c8c4fdaf0621373307db01013f5cd5745a1df255210f04b2b6b0fc2a076403
3
+ metadata.gz: a4ff817788cfe4164e2ee142351020c5f08b7b786dd346933b41fbc9b86a974d
4
+ data.tar.gz: 1077803bcb92a17ca2b0cf9ff4982c58745be8f05cdc4f558d6411ba69a76430
5
5
  SHA512:
6
- metadata.gz: 3a532a26eec89067263e0c215c33d42b33e34a5c47ecd6af8124792bfdf35ac737739129fbdd6bc815895b22af10e920b46ad510373d46dea90feac3c98ad3ee
7
- data.tar.gz: b9816a579582cef410d043a52eea44aa2058939cf1673fe4a75e4698d116806611f27d811eb32554ee4a87bfdd71cb120fabac598cd5d5ef776e42b9f4a46119
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Beni
4
- VERSION = "0.3.0"
4
+ VERSION = "0.4.0"
5
5
  end
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.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aotokitsuruya