concurrent-ruby-ext 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e9795a794ae44fe76d6a84bba913d695a73d955
|
4
|
+
data.tar.gz: 431d39c0d77b019c9f56804285ad4403c62004ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed1cf4cf6c139237cf3deec7ce86bf43de9451bc401138954879045e3115786e0a16f59c024fc0296adb03a7656ff17011b074cd256a5759457e6d6705414628
|
7
|
+
data.tar.gz: 91e6d2f731c78cfc64d5fb87f18854dae3d62d44258236a8edb1f70c0e9e81b6d4d9340b575491c7831b95a722d2ed38ed87f67d30865ebeffb647efef989774
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
|
-
## Current Release v1.0.
|
1
|
+
## Current Release v1.0.2 (2 May 2016)
|
2
|
+
|
3
|
+
* Fix bug with `Concurrent::Map` MRI backend `#inspect` method
|
4
|
+
* Fix bug with `Concurrent::Map` MRI backend using `Hash#value?`
|
5
|
+
* Improved documentation and examples
|
6
|
+
* Minor updates to Edge
|
7
|
+
|
8
|
+
### Release v1.0.1 (27 February 2016)
|
2
9
|
|
3
10
|
* Fix "uninitialized constant Concurrent::ReentrantReadWriteLock" error.
|
4
11
|
* Better handling of `autoload` vs. `require`.
|
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
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
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-02
|
12
|
+
date: 2016-05-02 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.0.
|
20
|
+
version: 1.0.2
|
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.
|
27
|
+
version: 1.0.2
|
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.
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.6.
|
78
|
+
rubygems_version: 2.6.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: C extensions to optimize concurrent-ruby under MRI.
|