concurrent-ruby-ext 1.1.0.pre1-x86-mingw32 → 1.1.0.pre2-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72d0162f39f4f866b2264d7faff867084011facebbe96474755e9e5eb0230da9
4
- data.tar.gz: 277cc283fbb48e6c5257644f062147ae8393d2aceda020466611fddd12e0ceeb
3
+ metadata.gz: ec99086256e0f6aba28dd5de3475a32dbb632dd7511983a342570b12f827bad2
4
+ data.tar.gz: 0f2fca5898e758efb271336d4106625c9d86173f37c263e5404b4d7620fa2505
5
5
  SHA512:
6
- metadata.gz: 571309ea27c0c62013bfa4e708c0e4f0b2642c67f85d6e039d8f92dcd140f5bab0aa564e1fa5d7b21ac58f1704f046ff86340a579b3f7ec469264fdea526c6e6
7
- data.tar.gz: f1957aeec7a4dec181cf563a4e40e7fae5b342b62304262f94cd84c78273bc7a4f0d538370b79da720da3f098bed5b35e67eb8c66865e3f0e218e759f953aa1c
6
+ metadata.gz: 78331b6067d0af3f0806c22434010d275e667c709c28ac0d86af0e295e67ceeaa63a3ad83ab901633c6d3347011f545c31840b9dd9936fabe1b006d9ff89c18f
7
+ data.tar.gz: d3c897ff5ee2f5700096866e381b22730d5132838516a4a9fe2653fcd225018bf79cbff31b755e4f3af6369edf701c12b485d684c4751d5044d2550af2736fec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  ## Current
2
2
 
3
+ ## Release v1.1.0.pre1, edge v0.4.0.pre1 (15 Aug 2018)
4
+
3
5
  concurrent-ruby:
4
6
 
5
7
  * [Promises](http://ruby-concurrency.github.io/concurrent-ruby/1.1.0/Concurrent/Promises.html)
data/README.md CHANGED
@@ -144,7 +144,7 @@ Thread-safe variables:
144
144
  A boolean value that can be updated atomically.
145
145
  * [AtomicFixnum](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/AtomicFixnum.html)
146
146
  A numeric value that can be updated atomically.
147
- * [AtomicReference](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/MutexAtomic.html)
147
+ * [AtomicReference](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/AtomicReference.html)
148
148
  An object reference that may be updated atomically.
149
149
  * [Exchanger](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/Exchanger.html)
150
150
  A synchronization point at which threads can pair and swap elements within pairs. Based on
@@ -178,7 +178,7 @@ Thread-safe variables:
178
178
  A read/write lock with reentrant and upgrade features.
179
179
  * [Semaphore](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/Semaphore.html)
180
180
  A counting-based locking mechanism that uses permits.
181
- * [AtomicMarkableReference](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/Atomic/AtomicMarkableReference.html)
181
+ * [AtomicMarkableReference](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/AtomicMarkableReference.html)
182
182
 
183
183
  #### Deprecated
184
184
 
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.1.0.pre1
4
+ version: 1.1.0.pre2
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: 2018-08-15 00:00:00.000000000 Z
12
+ date: 2018-09-18 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.1.0.pre1
20
+ version: 1.1.0.pre2
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.1.0.pre1
27
+ version: 1.1.0.pre2
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.