beni 0.3.0 → 0.5.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +20 -0
  3. data/README.md +5 -0
  4. data/lib/beni/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00e30de96873f6115a6775bfbd2e6ec02ab3faccf013459ee379722069059542
4
- data.tar.gz: 84c8c4fdaf0621373307db01013f5cd5745a1df255210f04b2b6b0fc2a076403
3
+ metadata.gz: 7541c2f0fae8d74efa000699624548c84a1f5732419b8c6da1f28ca23a20d938
4
+ data.tar.gz: 6cfa7bfab32c26dffe1e93c7eb9a364fcd61365e4453d4a2f15949202e855c85
5
5
  SHA512:
6
- metadata.gz: 3a532a26eec89067263e0c215c33d42b33e34a5c47ecd6af8124792bfdf35ac737739129fbdd6bc815895b22af10e920b46ad510373d46dea90feac3c98ad3ee
7
- data.tar.gz: b9816a579582cef410d043a52eea44aa2058939cf1673fe4a75e4698d116806611f27d811eb32554ee4a87bfdd71cb120fabac598cd5d5ef776e42b9f4a46119
6
+ metadata.gz: 955aafba659236d53388dcb76f02da22057922d45eefa9a941834e1f671aca20a2f7ab9a7b2bb3f8c0cef395ef039d0fc79797528474cf340b1cc9aec5b5f17f
7
+ data.tar.gz: e7ad04629b7ac030dcf5ba56b91f6c5b3d84f53a4096feab944b708ee1045ac7be6549c5c33c4b055f004e82018f9d923fd37e1af9a561496dad2006ae457e57
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.5.0](https://github.com/elct9620/beni/compare/v0.4.0...v0.5.0) (2026-06-08)
4
+
5
+
6
+ ### Features
7
+
8
+ * **beni:** add a typed Symbol newtype ([d38d44c](https://github.com/elct9620/beni/commit/d38d44cc70e39046be87eec8ca3ced8b09da81af))
9
+ * **beni:** add Array::len and is_empty ([ad43e0b](https://github.com/elct9620/beni/commit/ad43e0bbaf346fbcad1af0ee6d7a7338ee2cf3a4))
10
+ * **beni:** add Module::alias_method ([8f0e176](https://github.com/elct9620/beni/commit/8f0e17693b7cb87f93dd21d5274dbcc360e3763a))
11
+ * **beni:** add String and block-rest get_args formats ([ac3272d](https://github.com/elct9620/beni/commit/ac3272da4ba76b12681b1de42648bc96349a881c))
12
+ * **beni:** expose string, constant, and exception seams ([a8b702f](https://github.com/elct9620/beni/commit/a8b702ff92549308c2f22d698d7976d85976cd85))
13
+ * **beni:** wrap Rust state behind a Ruby class via CDATA ([964fedf](https://github.com/elct9620/beni/commit/964fedf92880cef96a8f61b651b9a189fdccf69f))
14
+
15
+ ## [0.4.0](https://github.com/elct9620/beni/compare/v0.3.0...v0.4.0) (2026-06-08)
16
+
17
+
18
+ ### Features
19
+
20
+ * **beni:** add a typed Proc handle with a protected yield ([e69aee7](https://github.com/elct9620/beni/commit/e69aee7ca572c2aac1e8ec9c24912f854934f5ee))
21
+ * **beni:** expose the break view and current call-info index ([30161c6](https://github.com/elct9620/beni/commit/30161c6bf58d6bc277546ae8f39aa3dc299d8425))
22
+
3
23
  ## [0.3.0](https://github.com/elct9620/beni/compare/v0.2.0...v0.3.0) (2026-06-07)
4
24
 
5
25
 
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.5.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.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aotokitsuruya