concurrent-ruby-ext 0.8.0.pre2-x64-mingw32 → 0.8.0-x64-mingw32

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YTIwYjNhMGQ0MjQ2ZjY1YTRmOGU2NGM5M2U2NTQ2YTBkM2YxMzFiYw==
4
+ MWQxMjRkMjQ1YTE1NjI5NGIyNmUxYTQwODQyZjkyZjAwMjIyNDA5NQ==
5
5
  data.tar.gz: !binary |-
6
- NWNlOTlhODQyZTM3ZDVhOTgyZmZhMjJlYzMxOTU5ZDQ4ZDhhZTE2Mg==
6
+ YTA1NzYzMzRjZTM1OWU3NjhiOTM4ODA1NzQ4OGVkYWM0ZTY3NDdmYQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- Yjc4YTNhZTU4NmJjMmFkMjgyODAzYzg5YmM4MWJhNzZmZTEwMzUwZDEyOTQ1
10
- NzM1Mzg0N2YyY2U3NWI0YjAwZmQ5YzIwY2Y4MDc1N2Y3OTVlMTBhZTE0M2Iw
11
- NDVjNzhmOWQyN2Q3ZmFiZDg2NTc4ZWMzZDhjODhhNDM2NzUzMzU=
9
+ NDEwNmM4OGFiMGFjZmQ1MjZjN2Y3ZmQ2MGZkM2YxZWVkNTBiYTZlNjYyYThi
10
+ OGIyMDRlYWY3ZGUxOTc2N2QzOTU0OTdhZjlhYTc0ZTY4NTQwMmY5OGQxMTU2
11
+ ZGJmZTI4NWQzMGU4ODI4MGI0Y2RhZDM2NjkzYjQyODQwNzQ2N2Y=
12
12
  data.tar.gz: !binary |-
13
- OTY4MWZjNWVkM2YwM2I1NTA3OTY1Y2E1MzI5N2E0Y2YxNDc1Mzc0M2VhZDRh
14
- MzYxOTNiNzBhMWY2OWNhZTlhMjZjNDAzODhiOTJlNGY1MDNhMTM4OWZmYzRl
15
- YzdhNzQ1MTJiNDg5YmNlYjVjYWJmYWVkMTk1NzNkODExYTYxYjE=
13
+ ZDM4YzhmMTNmM2Y5ZTRkYTI0MDc1ZjRlMWZjMmNkNmFjMWRkOGM4NmM2MWNj
14
+ NWNmY2E0Y2NkODJhODYzODg0MTA4OTg3MjgxODBiNzgwZjc1MmUzZDEwZDk4
15
+ NGY0NWY5ZWE0ZjNiMWRmM2FkODYzNTNmMGM4MjgyNTMwOTU4NGE=
data/CHANGELOG.md CHANGED
@@ -1,4 +1,11 @@
1
- ### Next Release v0.7.2 (TBD)
1
+ ### Next Release v0.8.0 (25 January 2015)
2
+
3
+ * C extension for MRI have been extracted into the `concurrent-ruby-ext` companion gem.
4
+ Please see the README for more detail.
5
+ * Better variable isolation in `Promise` and `Future` via an `:args` option
6
+ * Continued to update intermittently failing tests
7
+
8
+ ## Current Release v0.7.2 (24 January 2015)
2
9
 
3
10
  * New `Semaphore` class based on [java.util.concurrent.Semaphore](http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Semaphore.html)
4
11
  * New `Promise.all?` and `Promise.any?` class methods
@@ -6,11 +13,16 @@
6
13
  * Thread pools still accept the `:overflow_policy` option but display a warning
7
14
  * Thread pools now implement `fallback_policy` behavior when not running (rather than universally rejecting tasks)
8
15
  * Fixed minor `set_deref_options` constructor bug in `Promise` class
16
+ * Fixed minor `require` bug in `ThreadLocalVar` class
17
+ * Fixed race condition bug in `TimerSet` class
18
+ * Fixed race condition bug in `TimerSet` class
19
+ * Fixed signal bug in `TimerSet#post` method
9
20
  * Numerous non-functional updates to clear warning when running in debug mode
10
21
  * Fixed more intermittently failing tests
11
22
  * Tests now run on new Travis build environment
23
+ * Multiple documentation updates
12
24
 
13
- ## Current Release v0.7.1 (4 December 2014)
25
+ ### Release v0.7.1 (4 December 2014)
14
26
 
15
27
  Please see the [roadmap](https://github.com/ruby-concurrency/concurrent-ruby/issues/142) for more information on the next planned release.
16
28
 
Binary file
Binary file
@@ -20,7 +20,7 @@ module Concurrent
20
20
  rescue LoadError
21
21
  # may be a Windows cross-compiled native gem
22
22
  begin
23
- require "#{RUBY_VERSION[0..2]}/concurrent/extension"
23
+ require "concurrent/#{RUBY_VERSION[0..2]}/extension"
24
24
  @@c_ext_loaded = true
25
25
  rescue LoadError
26
26
  warn 'Performance on MRI may be improved with the concurrent-ruby-ext gem. Please see http://concurrent-ruby.com'
@@ -31,7 +31,7 @@ module Concurrent
31
31
  require 'concurrent_ruby_ext'
32
32
  @@java_ext_loaded = true
33
33
  rescue LoadError
34
- warn 'Attempted to load Java extensions on unsupported platform. Continuing with pure-Ruby.'
34
+ warn 'Performance on JRuby may be improved by installing the pre-compiled Java extensions. Please see http://concurrent-ruby.com'
35
35
  end
36
36
  end
37
37
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concurrent-ruby-ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0.pre2
4
+ version: 0.8.0
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Jerry D'Antonio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-15 00:00:00.000000000 Z
11
+ date: 2015-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 0.8.0.pre2
19
+ version: 0.8.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 0.8.0.pre2
26
+ version: 0.8.0
27
27
  description: ! " C extensions to optimize the concurrent-ruby gem when running
28
28
  under MRI.\n Please see http://concurrent-ruby.com for more information.\n"
29
29
  email: jerry.dantonio@gmail.com
@@ -47,6 +47,7 @@ files:
47
47
  - ext/concurrent/rb_concurrent.c
48
48
  - ext/concurrent/ruby_193_compatible.h
49
49
  - lib/concurrent/2.0/extension.so
50
+ - lib/concurrent/2.1/extension.so
50
51
  - lib/concurrent/atomic_reference/concurrent_update_error.rb
51
52
  - lib/concurrent/atomic_reference/direct_update.rb
52
53
  - lib/concurrent/atomic_reference/numeric_cas_wrapper.rb
@@ -67,9 +68,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
67
68
  version: 1.9.3
68
69
  required_rubygems_version: !ruby/object:Gem::Requirement
69
70
  requirements:
70
- - - ! '>'
71
+ - - ! '>='
71
72
  - !ruby/object:Gem::Version
72
- version: 1.3.1
73
+ version: '0'
73
74
  requirements: []
74
75
  rubyforge_project:
75
76
  rubygems_version: 2.4.5