concurrent-ruby-ext 1.0.3.pre3-x64-mingw32 → 1.0.3-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -1
- data/README.md +1 -1
- 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: dda4652b0c5d7d521919ce8ecf523067c70759fa
|
4
|
+
data.tar.gz: 0761bf25b8d5f18f1966df06a1181a25ce8299d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f298a95ee4d27138bf91415c677d877a9e574d550321eac9c38993c4e8bb1a152dc4cd95b7fd3336d4ccff0a356e6879a3821f36966ef5b1fbd5d4284fbb06b4
|
7
|
+
data.tar.gz: 46e48ab959e5a09978cd95ba194767df18169717648edee6caf4a4bc5bf7651c5e63e7949099290b2c54fef953d9bfa346d147ce60993501e68bcb732a1c1f96
|
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
|
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: x64-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.
|
@@ -72,9 +72,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
72
72
|
version: 1.9.3
|
73
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
74
|
requirements:
|
75
|
-
- - "
|
75
|
+
- - ">="
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
77
|
+
version: '0'
|
78
78
|
requirements: []
|
79
79
|
rubyforge_project:
|
80
80
|
rubygems_version: 2.4.8
|