concurrent-ruby-ext 1.0.4-x64-mingw32 → 1.0.5-x64-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
  SHA1:
3
- metadata.gz: 96c3102f9e79591de77447d94223e94b4fa2b7b3
4
- data.tar.gz: 23d5ca18cda1a072b470c21d9128337bbb92df31
3
+ metadata.gz: 28e1ed4a7ccb26c6447839738a05b91f93deb738
4
+ data.tar.gz: d99bf41a831274df07bc647903d800b4c3d21550
5
5
  SHA512:
6
- metadata.gz: 784bfa58c0767c038b60d983743c11dbfc925336035aa3be6969acc4add88764dbcb25bf7cfedcf0426e7d53a2b4747ec39686f6f38234889b17a8142c2336cb
7
- data.tar.gz: 560e7eaef3c7432da2b511772892506eb5f23c6f2f735dfdf712e08c73a182d68dd5d63852846f80e609988827cc5ba085dc4df979f163f6b248f00d610e9a9a
6
+ metadata.gz: b00d2e579e52ff8220c5859e1d57cccb797b3d9279e0b0c292598af60ce31115b44990b3be09b3fa5f5dbd9f6688dd012baed8cd4bec057549ca05baf52126f1
7
+ data.tar.gz: 3ec7fb04ebdeeba668e8861b5470de1503e9a47b3aabc6172142a04368536abcb0b6c5ea310082268a00f0d810c2c4a42d5d79a9d5112bf54c3e06a8b1e5d996
data/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
- ## Current Release v1.0.4 (27 Dec 2016)
1
+ ## Release v1.0.5, edge v0.3.1 (1 Feb 2017)
2
+
3
+ concurrent-ruby:
4
+
5
+ * Documentation for Event and Semaphore
6
+ * Use Unsafe#fullFence and #loadFence directly since the shortcuts were removed in JRuby
7
+
8
+ concurrent-ruby-edge:
9
+
10
+ * (#620) Actors on Pool raise an error
11
+ * (#624) Delayed promises did not interact correctly with flatting
12
+ * Fix arguments yielded by callback methods
13
+ * Overridable default executor in promises factory methods
14
+
15
+ ## Release v1.0.4, edge v0.3.0 (27 Dec 2016)
2
16
 
3
17
  concurrent-ruby:
4
18
 
@@ -33,7 +47,7 @@ concurrent-ruby-edge:
33
47
  * Improved documentation and examples
34
48
  * Minor updates to Edge
35
49
 
36
- ### Release v1.0.1 (27 February 2016)
50
+ ## Release v1.0.1 (27 February 2016)
37
51
 
38
52
  * Fix "uninitialized constant Concurrent::ReentrantReadWriteLock" error.
39
53
  * Better handling of `autoload` vs. `require`.
@@ -46,7 +60,7 @@ concurrent-ruby-edge:
46
60
  * Improved documentation.
47
61
  * Updated README and CONTRIBUTING.
48
62
 
49
- ### Release v1.0.0 (13 November 2015)
63
+ ## Release v1.0.0 (13 November 2015)
50
64
 
51
65
  * Rename `attr_volatile_with_cas` to `attr_atomic`
52
66
  * Add `clear_each` to `LockFreeStack`
@@ -94,7 +108,7 @@ concurrent-ruby-edge:
94
108
  * Many improved tests
95
109
  * Some internal reorganization
96
110
 
97
- ### Release v0.9.1 (09 August 2015)
111
+ ## Release v0.9.1 (09 August 2015)
98
112
 
99
113
  * Fixed a Rubiniux bug in synchronization object
100
114
  * Fixed all interpreter warnings (except circular references)
@@ -108,7 +122,7 @@ concurrent-ruby-edge:
108
122
  * `ThreadLocalVar#bind` method is now public
109
123
  * Refactored many tests
110
124
 
111
- ### Release v0.9.0 (10 July 2015)
125
+ ## Release v0.9.0 (10 July 2015)
112
126
 
113
127
  * Updated `AtomicReference`
114
128
  - `AtomicReference#try_update` now simply returns instead of raising exception
@@ -207,14 +221,14 @@ concurrent-ruby-edge:
207
221
  * Removed brute-force killing of threads in tests
208
222
  * Fixed a thread pool bug when the operating system cannot allocate more threads
209
223
 
210
- ### Release v0.8.0 (25 January 2015)
224
+ ## Release v0.8.0 (25 January 2015)
211
225
 
212
226
  * C extension for MRI have been extracted into the `concurrent-ruby-ext` companion gem.
213
227
  Please see the README for more detail.
214
228
  * Better variable isolation in `Promise` and `Future` via an `:args` option
215
229
  * Continued to update intermittently failing tests
216
230
 
217
- ### Release v0.7.2 (24 January 2015)
231
+ ## Release v0.7.2 (24 January 2015)
218
232
 
219
233
  * New `Semaphore` class based on [java.util.concurrent.Semaphore](http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Semaphore.html)
220
234
  * New `Promise.all?` and `Promise.any?` class methods
@@ -231,7 +245,7 @@ concurrent-ruby-edge:
231
245
  * Tests now run on new Travis build environment
232
246
  * Multiple documentation updates
233
247
 
234
- ### Release v0.7.1 (4 December 2014)
248
+ ## Release v0.7.1 (4 December 2014)
235
249
 
236
250
  Please see the [roadmap](https://github.com/ruby-concurrency/concurrent-ruby/issues/142) for more information on the next planned release.
237
251
 
@@ -252,7 +266,7 @@ Please see the [roadmap](https://github.com/ruby-concurrency/concurrent-ruby/iss
252
266
  * Removed confusing warning when not using native extenstions
253
267
  * Improved documentation
254
268
 
255
- ### Release v0.7.0 (13 August 2014)
269
+ ## Release v0.7.0 (13 August 2014)
256
270
 
257
271
  * Merge the [atomic](https://github.com/ruby-concurrency/atomic) gem
258
272
  - Pure Ruby `MutexAtomic` atomic reference class
@@ -285,14 +299,14 @@ Please see the [roadmap](https://github.com/ruby-concurrency/concurrent-ruby/iss
285
299
  * Removed deprecated `Actor` class
286
300
  * Better support for Rubinius
287
301
 
288
- ### Release v0.6.1 (14 June 2014)
302
+ ## Release v0.6.1 (14 June 2014)
289
303
 
290
304
  * Many improvements to `Concurrent::Actress`
291
305
  * Bug fixes to `Concurrent::RubyThreadPoolExecutor`
292
306
  * Fixed several brittle tests
293
307
  * Moved documentation to http://ruby-concurrency.github.io/concurrent-ruby/frames.html
294
308
 
295
- ### Release v0.6.0 (25 May 2014)
309
+ ## Release v0.6.0 (25 May 2014)
296
310
 
297
311
  * Added `Concurrent::Observable` to encapsulate our thread safe observer sets
298
312
  * Improvements to new `Channel`
@@ -331,7 +345,7 @@ Please see the [roadmap](https://github.com/ruby-concurrency/concurrent-ruby/iss
331
345
  * First implementation of [new, high-performance](https://github.com/ruby-concurrency/concurrent-ruby/pull/49) `Channel`
332
346
  * `Actor` is deprecated in favor of new experimental actor implementation [#73](https://github.com/ruby-concurrency/concurrent-ruby/pull/73). To avoid namespace collision it is living in `Actress` namespace until `Actor` is removed in next release.
333
347
 
334
- ### Release v0.5.0
348
+ ## Release v0.5.0
335
349
 
336
350
  This is the most significant release of this gem since its inception. This release includes many improvements and optimizations. It also includes several bug fixes. The major areas of focus for this release were:
337
351
 
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.0.4
4
+ version: 1.0.5
5
5
  platform: x64-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: 2016-12-27 00:00:00.000000000 Z
12
+ date: 2017-02-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -17,20 +17,18 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 1.0.4
20
+ version: 1.0.5
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.0.4
27
+ version: 1.0.5
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.
31
- email:
32
- - jerry.dantonio@gmail.com
33
- - concurrent-ruby@googlegroups.com
31
+ email: concurrent-ruby@googlegroups.com
34
32
  executables: []
35
33
  extensions: []
36
34
  extra_rdoc_files: