beni 0.6.0 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7927ad608b4794a029d77acc4bceaa7e34a97eaacbefb7fd3adee2de2594b8f3
4
- data.tar.gz: d467160f0e0a1d1fc4d3509645f7e3f13313d21d6a7821b80d7711b30d46fb45
3
+ metadata.gz: 6d001f425802e3d32f1925d39b91e25caa45f1f31ac10ec431d8346c9375225b
4
+ data.tar.gz: 57c6d9b1ee5681cfd525ece65d7aeeec42c6357f2676e32f4e1c7e88bd7dbc44
5
5
  SHA512:
6
- metadata.gz: 4f5114b9eff8dc164f02108846d22ceabb13731083c8b73eb4660ffb29af1e3d6ecd78b73d07e5963f3f1c2a5bd084bc85c1f251703cdc9145c7c2d19a4ad060
7
- data.tar.gz: eff041ef88ad87c1af6284835baf70334aad408013628efed48de5eb26ae7b7aa1b5cb9a8abbce2c032ef665acb7ba0f7fd97bb2453a850508fd98474f94b8ec
6
+ metadata.gz: c0ec83a8dd9f54de098411fccffe8c6c0d376508871b63e7af60fc67499fee987356ff57f1d302a50cde01617658cbe88ba8b037ad83ad9ef8e930f3dd1746c4
7
+ data.tar.gz: 75e2f50847288286e67752e1a2535efb729f84a13a3528b61074d509cea511914fb1c81cf94c10f83d563d3fb28e779a39d3fdc592237f0bb6f92c1e161db361
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.1](https://github.com/elct9620/beni/compare/v0.6.0...v0.6.1) (2026-06-11)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **wasi:** target wasm32-wasip1 instead of the deprecated wasi triple ([9603c38](https://github.com/elct9620/beni/commit/9603c385b77e2349400c459c5073cac73922a4af))
9
+
3
10
  ## [0.6.0](https://github.com/elct9620/beni/compare/v0.5.0...v0.6.0) (2026-06-09)
4
11
 
5
12
 
@@ -9,7 +9,7 @@ MRuby::Toolchain.new(:wasi) do |conf, _params|
9
9
  # vendor tree this mruby source is staged in (MRUBY_ROOT's parent).
10
10
  wasi_sdk = ENV["WASI_SDK_PATH"] || File.join(File.expand_path("..", MRUBY_ROOT), "wasi-sdk")
11
11
  bin = File.join(wasi_sdk, "bin")
12
- target_flags = ["--target=wasm32-wasi", "--sysroot=#{File.join(wasi_sdk, "share", "wasi-sysroot")}"]
12
+ target_flags = ["--target=wasm32-wasip1", "--sysroot=#{File.join(wasi_sdk, "share", "wasi-sysroot")}"]
13
13
  # setjmp/longjmp via the wasm exception-handling mechanism: all
14
14
  # three flags must be present at both compile and link stages.
15
15
  sjlj_flags = ["-mllvm", "-wasm-enable-sjlj", "-mllvm", "-wasm-use-legacy-eh=false"]
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.6.0"
4
+ VERSION = "0.6.1"
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.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aotokitsuruya