beni 0.8.0 → 0.8.1
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 +11 -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: 8d5656e41fb7820715d16d5b94372f0b2050cf56ad11e7e842dc4ee60dcfe518
|
|
4
|
+
data.tar.gz: e2b0ad47ed51ca369d789bd933dd5bbe620641ae1bd824fc36aece7566d40206
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d588872d02521c77a54abd6db2ebfb40b0be53851d9ec1a32d0a3ee7d62b378c9bfc63f3c157bb01be21974bd2c4f5ab0494b071b25d7e582cf010b4657f8860
|
|
7
|
+
data.tar.gz: 6a88dd4a35c81b285d344a20b89a543e63d6e352f35c4960951de55c0fea2753c4253ee2dbc77c75c158ed3abc723436a52ee9fa0cf92a94dbb514f40c3f03fc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.8.1](https://github.com/elct9620/beni/compare/v0.8.0...v0.8.1) (2026-07-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **beni-sys:** reject flags.mak layouts the token scan cannot read ([bed80f1](https://github.com/elct9620/beni/commit/bed80f152a3f651a4d1df36813c9521110f9c566))
|
|
9
|
+
* **beni:** guard const and class-variable access on non-class receivers ([3e64ae8](https://github.com/elct9620/beni/commit/3e64ae820fd94accc48b35b111a2ab3a69a46c71))
|
|
10
|
+
* **beni:** mark set_pending_exc unsafe and pin the exception-slot contract ([d21ff98](https://github.com/elct9620/beni/commit/d21ff98dc1ec5daef6a2152dbda01a5cc4bfa589))
|
|
11
|
+
* **beni:** saturate out-of-width argc instead of truncating ([e30bede](https://github.com/elct9620/beni/commit/e30bede2426b45655e35213cb64db2f495d219eb))
|
|
12
|
+
* **beni:** walk instance variables against a protected snapshot ([3e38d4f](https://github.com/elct9620/beni/commit/3e38d4fd9065e1619699d1da5bd652c51e7823b9))
|
|
13
|
+
|
|
3
14
|
## [0.8.0](https://github.com/elct9620/beni/compare/v0.7.0...v0.8.0) (2026-06-21)
|
|
4
15
|
|
|
5
16
|
|
data/lib/beni/version.rb
CHANGED