concurrent-ruby-ext 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -1
  3. data/README.md +4 -8
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: caa7e0e64a38409b4310140eb0a4d2110368bc53
4
- data.tar.gz: 87ec0f229905f4f82b33411a2b66154faa5ed0bf
3
+ metadata.gz: ddb0604cb34612f33cc603c8fdc4005da87e33b5
4
+ data.tar.gz: 8eb9eac8f535cb96035d1fca5ac7ec46b4b358ba
5
5
  SHA512:
6
- metadata.gz: 06ef90d165420bb9c4d6fa27b4d708ae3ec8f3aec2f01c554e26dc9f71b21644642f96eb0bcf5ac6399ef52603f647041ac19dded3a7eea77f5939d0338b5aad
7
- data.tar.gz: 67fdf0a8564e2ecc05917bf6119cef0c40dc6fa0b9cd1eeae1d4255207b324feba22e2c887e0c6c3887aa1538f7c38443eca49584e5d03a0d5967ada3508e968
6
+ metadata.gz: 4685771c56ee0ee22d4109a08ce45af766350a3cc16810a74b55889c3af2b25f9b4a9ec50babfcb9a00c95047081e337780facbc9cbd8bf5cab24ae663adceb6
7
+ data.tar.gz: 1402a79869a6cd040cb8b38ad2ab737c0726025074ff20fb996d22d4f78f44d7d999650f90e9cb29cb78473be59c0c36aea92c393bf978f560931bca9656630c
data/CHANGELOG.md CHANGED
@@ -1,4 +1,17 @@
1
- ## Current Release v1.0.0 (13 November 2015)
1
+ ## Current Release v1.0.1 (27 February 2016)
2
+
3
+ * Fix "uninitialized constant Concurrent::ReentrantReadWriteLock" error.
4
+ * Better handling of `autoload` vs. `require`.
5
+ * Improved API for Edge `Future` zipping.
6
+ * Fix reference leak in Edge `Future` constructor .
7
+ * Fix bug which prevented thread pools from surviving a `fork`.
8
+ * Fix bug in which `TimerTask` did not correctly specify all its dependencies.
9
+ * Improved support for JRuby+Truffle
10
+ * Improved error messages.
11
+ * Improved documentation.
12
+ * Updated README and CONTRIBUTING.
13
+
14
+ ### Release v1.0.0 (13 November 2015)
2
15
 
3
16
  * Rename `attr_volatile_with_cas` to `attr_atomic`
4
17
  * Add `clear_each` to `LockFreeStack`
data/README.md CHANGED
@@ -45,9 +45,9 @@
45
45
 
46
46
  ### Supported Ruby versions
47
47
 
48
- MRI 1.9.3, 2.0, 2.1, 2.2, JRuby (1.9 mode), and Rubinius 2.x are supported.
48
+ MRI 1.9.3, 2.0 and above, JRuby 1.7x in 1.9 mode, JRuby 9000, and Rubinius 2.x are supported.
49
49
  This gem should be fully compatible with any interpreter that is compliant with Ruby 1.9.3 or newer.
50
- Java 8 is preferred for JRuby but every Java version on which JRuby 9000 runs will be supported.
50
+ Java 8 is preferred for JRuby but every Java version on which JRuby 9000 runs is supported.
51
51
 
52
52
  ## Thread Safety
53
53
 
@@ -59,14 +59,10 @@ It is critical to remember, however, that Ruby is a language of mutable referenc
59
59
 
60
60
  ## Features & Documentation
61
61
 
62
- We have a roadmap guiding our work toward the [v1.0.0 release](https://github.com/ruby-concurrency/concurrent-ruby/issues/257).
63
-
64
62
  The primary site for documentation is the automatically generated [API documentation](http://ruby-concurrency.github.io/concurrent-ruby/frames.html)
65
63
 
66
64
  We also have a [mailing list](http://groups.google.com/group/concurrent-ruby) and [IRC (gitter)](https://gitter.im/ruby-concurrency/concurrent-ruby).
67
65
 
68
- This library contains a variety of concurrency abstractions at high and low levels. One of the high-level abstractions is likely to meet most common needs.
69
-
70
66
  #### General-purpose Concurrency Abstractions
71
67
 
72
68
  * [Async](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Async.html): A mixin module that provides simple asynchronous behavior to a class. Loosely based on Erlang's [gen_server](http://www.erlang.org/doc/man/gen_server.html).
@@ -182,7 +178,7 @@ gem install concurrent-ruby
182
178
  or add the following line to Gemfile:
183
179
 
184
180
  ```ruby
185
- gem 'concurrent-ruby'
181
+ gem 'concurrent-ruby', require: 'concurrent'
186
182
  ```
187
183
 
188
184
  and run `bundle install` from your shell.
@@ -198,7 +194,7 @@ gem install concurrent-ruby-edge
198
194
  or add the following line to Gemfile:
199
195
 
200
196
  ```ruby
201
- gem 'concurrent-ruby-edge'
197
+ gem 'concurrent-ruby-edge', require: 'concurrent-edge'
202
198
  ```
203
199
 
204
200
  and run `bundle install` from your shell.
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.0
4
+ version: 1.0.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: 2015-11-13 00:00:00.000000000 Z
12
+ date: 2016-02-27 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.0
20
+ version: 1.0.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.0.0
27
+ version: 1.0.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.
@@ -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.4.8
78
+ rubygems_version: 2.6.0
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: C extensions to optimize concurrent-ruby under MRI.