concurrent-ruby-ext 1.0.3.pre3-x86-mingw32 → 1.0.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 +15 -1
- data/README.md +1 -1
- data/lib/concurrent/1.9/extension.so +0 -0
- data/lib/concurrent/2.0/extension.so +0 -0
- data/lib/concurrent/2.1/extension.so +0 -0
- data/lib/concurrent/2.2/extension.so +0 -0
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b1b186855924e8a45acfa23602d2ce26167ec41
|
4
|
+
data.tar.gz: 85844791e44fa209b3a14b459e069a136491de7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5b8217249ce39c8a44df6ec2f6f123c20ae9b5626694ecb7d5a25a6c907bda6a3e8a34d8276db66107f16c10908d2485117b85caf7085e6bc3775842f33dd27
|
7
|
+
data.tar.gz: 690f97a9dfd8d7905a0cef3fec8b409ecb4d46b9cd13b4703d7e3d5c7c717de6271e3f7ecca95618dcb02c5d4a435d75d95fdd5af239ea63ddda8299a0b2a35d
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,18 @@
|
|
1
|
-
## Current Release v1.0.
|
1
|
+
## Current Release v1.0.3 (26 Nov 2016)
|
2
|
+
|
3
|
+
* Semaphore Mutex and JRuby parity
|
4
|
+
* Adds Map#each as alias to Map#each_pair
|
5
|
+
* Fix uninitialized instance variables
|
6
|
+
* Make Fixnum, Bignum merger ready
|
7
|
+
* Allows Promise#then to receive an executor
|
8
|
+
* TimerSet now survives a fork
|
9
|
+
* Reject promise on any exception
|
10
|
+
* Allow ThreadLocalVar to be initialized with a block
|
11
|
+
* Support Alpha with `Concurrent::processor_count`
|
12
|
+
* Fixes format-security error when compiling ruby_193_compatible.h
|
13
|
+
* Concurrent::Atom#swap fixed: reraise the exceptions from block
|
14
|
+
|
15
|
+
## Release v1.0.2 (2 May 2016)
|
2
16
|
|
3
17
|
* Fix bug with `Concurrent::Map` MRI backend `#inspect` method
|
4
18
|
* Fix bug with `Concurrent::Map` MRI backend using `Hash#value?`
|
data/README.md
CHANGED
@@ -235,8 +235,8 @@ The best practice is to depend on `concurrent-ruby` and let users to decide if t
|
|
235
235
|
|
236
236
|
## Maintainers
|
237
237
|
|
238
|
+
* [Petr Chalupa](https://github.com/pitr-ch) (lead maintainer)
|
238
239
|
* [Jerry D'Antonio](https://github.com/jdantonio) (creator)
|
239
|
-
* [Petr Chalupa](https://github.com/pitr-ch)
|
240
240
|
* [Michele Della Torre](https://github.com/mighe)
|
241
241
|
* [Chris Seaton](https://github.com/chrisseaton)
|
242
242
|
* [Paweł Obrok](https://github.com/obrok)
|
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.0.3
|
4
|
+
version: 1.0.3
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Jerry D'Antonio
|
@@ -9,22 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-12-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: concurrent-ruby
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- -
|
18
|
+
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.0.3
|
20
|
+
version: 1.0.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.0.3
|
27
|
+
version: 1.0.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.
|
@@ -73,9 +73,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
73
|
version: 1.9.3
|
74
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
75
|
requirements:
|
76
|
-
- - "
|
76
|
+
- - ">="
|
77
77
|
- !ruby/object:Gem::Version
|
78
|
-
version:
|
78
|
+
version: '0'
|
79
79
|
requirements: []
|
80
80
|
rubyforge_project:
|
81
81
|
rubygems_version: 2.4.8
|