atomic-ruby 0.5.0 → 0.5.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: 10b5f273dd24628d2bf10a095cb875647bc922fc36697528c472053c61b2822c
4
- data.tar.gz: b1b45d921decbc9bd2f927b8b6ed11a8de9e36ca1acacd4dde411953992ffb3a
3
+ metadata.gz: 77a96073c9e6cfe6f4d7de10384c80a2ef3c11613584d18aceb07c190e6cff2e
4
+ data.tar.gz: 2551a02ea50cb994f66557f7afe036d8ae51c47704f6f50981e38ef7edad0a78
5
5
  SHA512:
6
- metadata.gz: c5ed7e71b51fa5b45e7031c7a08399f0158c588f3fe5b64844f7511fd959ebe7735fcc042d61b84c05729b961a133e7fa12a84663fe2e791b79fe3d02d6319f1
7
- data.tar.gz: cd538c8c88fa9aa636ae0c0c69063b8288cde1af7b533c958c76096a7ecede7967ab45159ca04d010d507e084b8b13c38aa225d2ba675b146d2c7e8c473d147f
6
+ metadata.gz: f83941f55a8339c7bace46ebae55d39e31e9a60d644e1fd31b552fbc55fba29e5f757717551f265b646283da39a3f521d9db8ae1bd69c96d3af84420160327c3
7
+ data.tar.gz: 7bca197d4400cac66579ba325992f6ddbdb9d1c324aa7af77bf9e4778ddee86075af01e20f4f3b57d747df41e7af210075bf02d2bf3ed6214079e8565134ba23
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.5.1] - 2025-07-26
4
+
5
+ - Revert `wrap_struct_name` back to `AtomicRuby::Atom`
6
+
3
7
  ## [0.5.0] - 2025-07-17
4
8
 
5
9
  - Add shortcut aliases for `AtomicRuby` namespaced classes
@@ -24,7 +24,7 @@ static void atomic_ruby_atom_compact(void *ptr) {
24
24
  }
25
25
 
26
26
  static const rb_data_type_t atomic_ruby_atom_type = {
27
- .wrap_struct_name = "Atom",
27
+ .wrap_struct_name = "AtomicRuby::Atom",
28
28
  .function = {
29
29
  .dmark = atomic_ruby_atom_mark,
30
30
  .dfree = atomic_ruby_atom_free,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AtomicRuby
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atomic-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Young