beni 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c331de89e1d8d6996c41ba290800042b985d932ffc9c0ef0d957753144c195b0
4
- data.tar.gz: 3d4e9478ee1b7d4e5fcd91f0f47b49d750e491b062580ad8be902ca68548b35b
3
+ metadata.gz: 88a0b6ec4613b616c2986f45f387babd0e87fa3bf1f76f5941482b5fb5c2d430
4
+ data.tar.gz: b234beff1815a8cb5e8d6453271095becdf572bd59e8ee90ff66442523ab2da8
5
5
  SHA512:
6
- metadata.gz: '093f8eeb0ab8d91e94c01a74808716d875c112d9d0351b31cb98d4db27891147f6b11cca04fc655e4f50f0bca90dbca3be1c81b907b4bacbdd4419ee58050f56'
7
- data.tar.gz: 384eeb4227d265d66c4eaa4a35aab0a1988ad99af1fce770e73a0faf9c32d2a3e15444d4cea9f1b579064a430e57f2a9f26015ef1cf1583a0bd96ece6fdede41
6
+ metadata.gz: e60211cb4e4233b53b43a6271cec44f076c8a586e6686c497cc56403f50dcf64f2418aab35a2c0d607b3540fbf9bc41c724467e6dbb01bf7e432a8fbdfaab265
7
+ data.tar.gz: d90c527587589c8392c5bf1bfe550ea337e8f9fa6a035ca67b40b5455f0d95ea4e377c55c27da210e580767e8681ef991feb1a9f6bc1c8e188eaa9c14a7b603b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.0](https://github.com/elct9620/beni/compare/v0.1.0...v0.2.0) (2026-06-07)
4
+
5
+
6
+ ### Features
7
+
8
+ * **beni:** add ArenaScope for GC arena bracketing ([ec8e1e4](https://github.com/elct9620/beni/commit/ec8e1e416e3a4dc2433281dfe9945916fcf98081))
9
+ * **beni:** add Module::define_private_method ([86c5d24](https://github.com/elct9620/beni/commit/86c5d241aea6ecd27d73bcdcf37678d07fa054fc))
10
+ * **beni:** add Mrb::gv_get as the read counterpart of gv_set ([55f1bf0](https://github.com/elct9620/beni/commit/55f1bf024f1ab761450f602f9aa2f2f29932d25d))
11
+
3
12
  ## 0.1.0 (2026-06-06)
4
13
 
5
14
 
data/README.md CHANGED
@@ -153,15 +153,6 @@ bundle exec rake rust:verify # beni:build + check/test (host) + check (wasm32)
153
153
  Behavior contracts live in `SPEC.md` — the source of truth the
154
154
  implementation follows.
155
155
 
156
- ## Releasing
157
-
158
- Releases are cut by release-please: merging the release PR tags the
159
- version and publishes the gem and both crates in lockstep through OIDC
160
- trusted publishing. One-time cleanup: after 0.1.0 ships, remove the
161
- `release-as` line (and the then-stale `last-release-sha`) from
162
- `release-please-config.json` — left in place it pins every subsequent
163
- release to 0.1.0.
164
-
165
156
  ## Contributing
166
157
 
167
158
  Bug reports and pull requests are welcome on GitHub at
data/lib/beni/builder.rb CHANGED
@@ -40,9 +40,8 @@ module Beni
40
40
  # True when every target's artifacts — +libmruby.a+ plus the
41
41
  # +libmruby.flags.mak+ sidecar +beni-sys+ parses for ABI alignment
42
42
  # — are already present, letting callers skip the build without
43
- # spawning a subprocess. An archive without its sidecar (e.g. a
44
- # tree built before flags.mak joined the contract) triggers a
45
- # rebuild, which is incremental and only emits the missing file.
43
+ # spawning a subprocess. An archive without its sidecar triggers
44
+ # a rebuild, which is incremental and only emits the missing file.
46
45
  def built?
47
46
  artifact_paths.all? { |path| File.exist?(path) }
48
47
  end
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.1.0"
4
+ VERSION = "0.2.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.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aotokitsuruya