concurrent-ruby-ext 1.2.2-x86-mingw32 → 1.2.3-x86-mingw32
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 +4 -0
- data/README.md +2 -0
- data/ext/concurrent-ruby-ext/atomic_reference.c +1 -1
- data/lib/concurrent-ruby/concurrent/2.4/concurrent_ruby_ext.so +0 -0
- data/lib/concurrent-ruby/concurrent/2.5/concurrent_ruby_ext.so +0 -0
- data/lib/concurrent-ruby/concurrent/2.6/concurrent_ruby_ext.so +0 -0
- data/lib/concurrent-ruby/concurrent/2.7/concurrent_ruby_ext.so +0 -0
- data/lib/concurrent-ruby/concurrent/3.0/concurrent_ruby_ext.so +0 -0
- data/lib/concurrent-ruby/concurrent/3.1/concurrent_ruby_ext.so +0 -0
- data/lib/concurrent-ruby/concurrent/3.2/concurrent_ruby_ext.so +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 840e8b498e789c4ad9b729d6e5b008fa1eedea55cab09e6d31d8e2632084327d
|
4
|
+
data.tar.gz: e6eb5385ea1b4899ba47f02b973fa6448d4a76832526b2d6b8281357d7a9c86c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a362b52d05c1f63d64bdbbfe1785d0812457e0f55650da39eba9423249e2d67a1405675d1522dcb537b3a128840abb9d3ac15846961a5071576bdca6d3f5375c
|
7
|
+
data.tar.gz: f71d12e1308102e7284797fa58d88c7d14e95fc00f3c378d396965747942682e4a9f0beff09b819ace4f6cb19fbcf260f09aa3d1eb90f56a2429d7b07023e496
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
## Current
|
2
2
|
|
3
|
+
## Release v1.2.3 (16 Jan 2024)
|
4
|
+
|
5
|
+
* See [the GitHub release](https://github.com/ruby-concurrency/concurrent-ruby/releases/tag/v1.2.3) for details.
|
6
|
+
|
3
7
|
## Release v1.2.2 (24 Feb 2023)
|
4
8
|
|
5
9
|
* (#993) Fix arguments passed to `Concurrent::Map`'s `default_proc`.
|
data/README.md
CHANGED
@@ -375,6 +375,8 @@ best practice is to depend on `concurrent-ruby` and let users to decide if they
|
|
375
375
|
* [Benoit Daloze](https://github.com/eregon)
|
376
376
|
* [Matthew Draper](https://github.com/matthewd)
|
377
377
|
* [Rafael França](https://github.com/rafaelfranca)
|
378
|
+
* [Charles Oliver Nutter](https://github.com/headius)
|
379
|
+
* [Ben Sheldon](https://github.com/bensheldon)
|
378
380
|
* [Samuel Williams](https://github.com/ioquatix)
|
379
381
|
|
380
382
|
### Special Thanks to
|
@@ -105,7 +105,7 @@ VALUE ir_compare_and_set(volatile VALUE self, VALUE expect_value, VALUE new_valu
|
|
105
105
|
return Qtrue;
|
106
106
|
}
|
107
107
|
#else
|
108
|
-
if (__sync_bool_compare_and_swap(&DATA_PTR(self), expect_value, new_value)) {
|
108
|
+
if (__sync_bool_compare_and_swap(&DATA_PTR(self), (void *)expect_value, (void *)new_value)) {
|
109
109
|
return Qtrue;
|
110
110
|
}
|
111
111
|
#endif
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: concurrent-ruby-ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.3
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Jerry D'Antonio
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2024-01-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: concurrent-ruby
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.2.
|
20
|
+
version: 1.2.3
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 1.2.
|
27
|
+
version: 1.2.3
|
28
28
|
description: |2
|
29
29
|
C extensions to optimize the concurrent-ruby gem when running under MRI.
|
30
30
|
Please see http://concurrent-ruby.com for more information.
|