concurrent-ruby-ext 1.0.3.pre3 → 1.0.3
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 +14 -0
- data/README.md +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b5f8741056ad5cd17cf7256affbcd757ed4ac30
|
4
|
+
data.tar.gz: bf435ff8746a532e8b1a93107e1774cb08ec6ac4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f2dbe9ed78a6626fb1b73548c7373decea8175d92bbecd55e2e923adc7012d0e78401fc864a8eb8da77cf820c52f84a4fe91af3264dfada9c2f6eca54016c63
|
7
|
+
data.tar.gz: 78f8ced2992da467da4af7a46289d23f8ebc1bc3fdce30e1db855115ff783c52cb61f8fe3e88f7d2878c2cc824f21ae9b5ff0f7e23655e80fad207d7b93c5bf3
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
* Trigger execution of flattened delayed futures
|
2
|
+
* Avoid forking for processor_count if possible
|
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
|
+
|
1
15
|
## Current Release v1.0.2 (2 May 2016)
|
2
16
|
|
3
17
|
* Fix bug with `Concurrent::Map` MRI backend `#inspect` method
|
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)
|
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: ruby
|
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-17 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.
|
@@ -70,12 +70,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
70
|
version: 1.9.3
|
71
71
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
75
|
+
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.
|
78
|
+
rubygems_version: 2.5.1
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: C extensions to optimize concurrent-ruby under MRI.
|