concurrent-ruby-ext 1.1.0.pre2 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/README.md +6 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8735d12748365eda8a652c029ec64df6fb4aad7ba13f30e491449286682a13a5
|
4
|
+
data.tar.gz: 3d31b3abdc5ded3479a5104ff6a395522df4af494ec1f392fccde17238aae569
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d339d7264ad41c8407eda1ec7e4bcb33d2af51e69916038eb8400b90d030b998e3d432a020e26930d7ab32bebed78c0dbb568243b6f71167901b52c904976846
|
7
|
+
data.tar.gz: a6c7e55c74803db8e9a1ca9892a6bc657b991fbf7e5cb0f65dcee352ef7a06e38089f1c185075f068d53d831dbb9691f107c751291aab55a0f39e95b415f0d12
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,30 @@
|
|
1
1
|
## Current
|
2
2
|
|
3
|
+
## Release v1.1.1, edge v0.4.1 (1 Nov 2018)
|
4
|
+
|
5
|
+
* (#768) add support for 1.9.3 back
|
6
|
+
|
7
|
+
## Release v1.1.0, edge v0.4.0 (31 OCt 2018) (yanked)
|
8
|
+
|
9
|
+
* (#768) yanked because of issues with removed 1.9.3 support
|
10
|
+
|
11
|
+
## Release v1.1.0.pre2, edge v0.4.0.pre2 (18 Sep 2018)
|
12
|
+
|
13
|
+
concurrent-ruby:
|
14
|
+
|
15
|
+
* fixed documentation and README links
|
16
|
+
* fix Set for TruffleRuby and Rubinius
|
17
|
+
* use properly supported TruffleRuby APIs
|
18
|
+
|
19
|
+
concurrent-ruby-edge:
|
20
|
+
|
21
|
+
* add Promises.zip_futures_over_on
|
22
|
+
|
3
23
|
## Release v1.1.0.pre1, edge v0.4.0.pre1 (15 Aug 2018)
|
4
24
|
|
5
25
|
concurrent-ruby:
|
6
26
|
|
27
|
+
* requires at least Ruby 2.0
|
7
28
|
* [Promises](http://ruby-concurrency.github.io/concurrent-ruby/1.1.0/Concurrent/Promises.html)
|
8
29
|
are moved from `concurrent-ruby-edge` to `concurrent-ruby`
|
9
30
|
* Add support for TruffleRuby
|
data/README.md
CHANGED
@@ -227,8 +227,12 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
|
|
227
227
|
|
228
228
|
## Supported Ruby versions
|
229
229
|
|
230
|
-
MRI 2.0 and above
|
231
|
-
|
230
|
+
* MRI 2.0 and above
|
231
|
+
* JRuby 9000
|
232
|
+
* TruffleRuby are supported.
|
233
|
+
* Any Ruby interpreter that is compliant with Ruby 2.0 or newer.
|
234
|
+
|
235
|
+
Actually we still support mri 1.9.3 and jruby 1.7.27 but we are looking at ways how to drop the support.
|
232
236
|
Java 8 is preferred for JRuby but every Java version on which JRuby 9000 runs is supported.
|
233
237
|
|
234
238
|
The legacy support for Rubinius is kept but it is no longer maintained, if you would like to help
|
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.1.
|
4
|
+
version: 1.1.1
|
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: 2018-
|
12
|
+
date: 2018-11-05 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.1.
|
20
|
+
version: 1.1.1
|
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.1.
|
27
|
+
version: 1.1.1
|
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.
|
@@ -61,12 +61,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
61
|
requirements:
|
62
62
|
- - ">="
|
63
63
|
- !ruby/object:Gem::Version
|
64
|
-
version:
|
64
|
+
version: 1.9.3
|
65
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - "
|
67
|
+
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
69
|
+
version: '0'
|
70
70
|
requirements: []
|
71
71
|
rubyforge_project:
|
72
72
|
rubygems_version: 2.7.3
|