concurrent-ruby-ext 1.2.2-x86-mingw32 → 1.3.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4c6ca6387ca370155259bf8731794aaf735faa64c3817c51d02a5bda1107a72b
4
- data.tar.gz: cb70dfa757abc9855b427bd8d4ff37aec27064f655d44b5f581b4453306d282c
3
+ metadata.gz: ad1406e6bde511a2e821c5625dff3ff4bf8d579764657ef1b1a45c6ac6aaf1a2
4
+ data.tar.gz: b9d2c98535699f8a64fad67d87ba14de6e9a7812db1403ad6c303ed2c2923034
5
5
  SHA512:
6
- metadata.gz: 85243ae74c6602df8128f34f1cb75248689431a146df6ddb107389fe95aea50075d7d8d987cbf7b42139ef5b9f26cdeef7345a5758ac321b24f5004244017408
7
- data.tar.gz: e3eafcbc768c5da7d2c84fb12342775e93588110c506b3c0534c87ae60a3b4866e241acb5da890c34aa439e8dc968fe3ac71b7b4bd45714ab84ba99252505dc3
6
+ metadata.gz: b514f43996bd8480966037c364ea8f863451fafda3e3f43862407f5ea787fc7b8ef4a8dc2fc8147f1ba1ba4c8afed01c92834b07c8b4a4b9cc62bbad53966f69
7
+ data.tar.gz: 0df1fe2ead0b4907c146a96d61b1a2ad42bb133075327be326c7c6cbf9ea7c8e770fcfb097fc0cee5d38af70623f8d98c4f3ec5099dde8bfa86bdaa5f4cbcaed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  ## Current
2
2
 
3
+ ## Release v1.3.0 (28 May 2024)
4
+
5
+ * (#1042) Align Java Executor Service behavior for `shuttingdown?`, `shutdown?`
6
+ * (#1038) Add `Concurrent.usable_processor_count` that is cgroups aware.
7
+
8
+ ## Release v1.2.3 (16 Jan 2024)
9
+
10
+ * See [the GitHub release](https://github.com/ruby-concurrency/concurrent-ruby/releases/tag/v1.2.3) for details.
11
+
3
12
  ## Release v1.2.2 (24 Feb 2023)
4
13
 
5
14
  * (#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
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.2
4
+ version: 1.3.0
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: 2023-02-24 00:00:00.000000000 Z
12
+ date: 2024-05-28 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.2
20
+ version: 1.3.0
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.2
27
+ version: 1.3.0
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.
@@ -54,6 +54,7 @@ files:
54
54
  - lib/concurrent-ruby/concurrent/3.0/concurrent_ruby_ext.so
55
55
  - lib/concurrent-ruby/concurrent/3.1/concurrent_ruby_ext.so
56
56
  - lib/concurrent-ruby/concurrent/3.2/concurrent_ruby_ext.so
57
+ - lib/concurrent-ruby/concurrent/3.3/concurrent_ruby_ext.so
57
58
  homepage: http://www.concurrent-ruby.com
58
59
  licenses:
59
60
  - MIT
@@ -69,7 +70,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
69
70
  version: '2.4'
70
71
  - - "<"
71
72
  - !ruby/object:Gem::Version
72
- version: 3.3.dev
73
+ version: 3.4.dev
73
74
  required_rubygems_version: !ruby/object:Gem::Requirement
74
75
  requirements:
75
76
  - - ">="