beni 0.4.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -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: 7541c2f0fae8d74efa000699624548c84a1f5732419b8c6da1f28ca23a20d938
|
|
4
|
+
data.tar.gz: 6cfa7bfab32c26dffe1e93c7eb9a364fcd61365e4453d4a2f15949202e855c85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 955aafba659236d53388dcb76f02da22057922d45eefa9a941834e1f671aca20a2f7ab9a7b2bb3f8c0cef395ef039d0fc79797528474cf340b1cc9aec5b5f17f
|
|
7
|
+
data.tar.gz: e7ad04629b7ac030dcf5ba56b91f6c5b3d84f53a4096feab944b708ee1045ac7be6549c5c33c4b055f004e82018f9d923fd37e1af9a561496dad2006ae457e57
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
3
15
|
## [0.4.0](https://github.com/elct9620/beni/compare/v0.3.0...v0.4.0) (2026-06-08)
|
|
4
16
|
|
|
5
17
|
|
data/lib/beni/version.rb
CHANGED