beni 0.11.0 → 0.12.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 +26 -0
- data/README.md +4 -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: 751c23fa55573f7cfd9335654f61613b16278a61b0fb8cf57e1c891a84bc5ee0
|
|
4
|
+
data.tar.gz: c2b5767b3eae4ce6e17a8c41cec7dd379971fe099cc1000a42254a6d834dfca7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ae13c7e5ea04783c3c32ef6593416f52c671e3ebdb4f5d4e84adc8a0f5593f9c33f0982dfecee0e6c16b65dab8b264a05c1580cede8a65d7afa841580ac4c26
|
|
7
|
+
data.tar.gz: 52474f31804258fb74b870801838f5bffd34913243e86f77d33cf5f3a72ca51a92f1dd9dd7e2be47dd382e2d4b702a83673589a332cc4551b38af5826c4acac1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.12.0](https://github.com/elct9620/beni/compare/v0.11.0...v0.12.0) (2026-09-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* **beni-sys:** check the toolchain root against the one that built it
|
|
9
|
+
* **beni-sys:** link what the archive's sidecar names
|
|
10
|
+
* **beni:** require a carried payload to cross threads
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **beni-sys:** check the toolchain root against the one that built it ([c8799ae](https://github.com/elct9620/beni/commit/c8799aedff194819d1ef5b1e9ebbdefcc95344e7))
|
|
15
|
+
* **beni-sys:** link what the archive's sidecar names ([e694a2d](https://github.com/elct9620/beni/commit/e694a2d03199f86982e776e3c39dafb1c95bcaaa))
|
|
16
|
+
* **beni-sys:** refuse an archive older than the crates build against ([46d5830](https://github.com/elct9620/beni/commit/46d583041f3789a64e5e5cf4385e3666304caa8e))
|
|
17
|
+
* **beni:** carry an interpreter between threads ([e439835](https://github.com/elct9620/beni/commit/e4398358c25a2a167c4f90e6becd8da5260c9db7))
|
|
18
|
+
* **beni:** require a carried payload to cross threads ([ee8a0b7](https://github.com/elct9620/beni/commit/ee8a0b7303eb7c6ed651b26aad4c30b933661c3c))
|
|
19
|
+
* **beni:** state that a data-type descriptor crosses threads ([95b6d2f](https://github.com/elct9620/beni/commit/95b6d2f02c823b9b79cdfee449aad5f87f54ba99))
|
|
20
|
+
* **beni:** state that a typed handle crosses threads ([c75436a](https://github.com/elct9620/beni/commit/c75436a02db5ff6d23363b2e38499e93c8fb62e2))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **beni-sys:** compile the shims with the compiler their flags were written for ([bb3a3ea](https://github.com/elct9620/beni/commit/bb3a3ea57096c84d4a304cc16f469730191feb51))
|
|
26
|
+
* **beni-sys:** fail on a link set the sidecar states in another shape ([a68f3e9](https://github.com/elct9620/beni/commit/a68f3e919adc5c0cd944b9863677a126a7bd3ca0))
|
|
27
|
+
* **beni-sys:** hold binding generation to what the headers declare ([1829b20](https://github.com/elct9620/beni/commit/1829b20c959aa1875578589651730d8d94fc360d))
|
|
28
|
+
|
|
3
29
|
## [0.11.0](https://github.com/elct9620/beni/compare/v0.10.0...v0.11.0) (2026-09-04)
|
|
4
30
|
|
|
5
31
|
|
data/README.md
CHANGED
|
@@ -90,6 +90,10 @@ fn main() {
|
|
|
90
90
|
}
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
+
An interpreter is carried between threads but never reached from two at
|
|
94
|
+
once: `Mrb` is `Send` and not `Sync`, so handing one to another thread
|
|
95
|
+
compiles while sharing it needs a `Mutex` of your own.
|
|
96
|
+
|
|
93
97
|
With no archive discovery variable set, a host build compiles in
|
|
94
98
|
placeholder mode: `cargo check` passes, no FFI surface is exported, and
|
|
95
99
|
`Mrb::open` returns an error — so `beni` is safe to take as a transitive
|
data/lib/beni/version.rb
CHANGED