concurrent-ruby-ext 0.8.0.pre2-x86-mingw32 → 0.8.0-x86-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
- YzJiY2IxMzYxZDg0NTcwM2M3Y2NmMTQyNjUxMzkyYTYzNGNkOTY0NQ==
4
+ MTQzZGQzNDk4NmE3MDA1MDU1NGQwNmRmOGFmZGI4ZGQ0MWVlYmVlMg==
5
5
  data.tar.gz: !binary |-
6
- YzRkYWU3NjBkNzliNjU1OTViNzQ2NDA3YTFmMTg1NzVkMTJkOTUyYw==
6
+ ZTM2ODRkZTM0YTU0MDhjYTI1Yjg0NzU2ZDVmZTQzNzYyNjI1N2ZjMQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YjhkMWEyMWQ1MGE2ZjQ0YWUyMTcxM2E1YjQ5MmZhNzg4ZjQyNTFjMDBlZmZj
10
- YzlhYjkzMDc0ZDg1MTg1YzY5MDY0YmU1MTlhZTE1ZGMxMGY2MDc4ZDgzMGZk
11
- ZGRkYzM5OTM0ZGU5NTViYjZjN2UxMjA1NjQyZmUxZmQ1YTZjZjY=
9
+ ZWE0MzQyMzBhOGJhYjAwYWM4MGZjY2VlNzgxZWE3ODA0NzNjNjM2YzQzMGZj
10
+ MTMzYzI1ODFiNmQ4MmZhZDRjZTliMGJhNmFkY2Y0NjRjNWZlMGU1OTY3NGQ3
11
+ ODUwOGM4MzE0ZDA5ZTRlNTlhNDg3MjRlOTZjNWQ3YzVmZjlhMWI=
12
12
  data.tar.gz: !binary |-
13
- MjVjZTE3OTRiNWNkYTQ0ZmU2MWE4MGNmMDRhMGQ4NzYwYTExMzk4YmZiMTdl
14
- MzIyMWU4NjkyN2U4NzU1MmE4ZWY1ZjhkYjVkNTc0OTE3MDc5ZTNkOWY5YWMy
15
- YmM4ZTJjOTllYjRiOGVmMWU3MDIyZTg4NzhmMWViMjZiYjMxNTQ=
13
+ YTZmOTdhNDM3MTYwYTYxNjQxYmU1MzA4ZDA2YjA5YmRiN2Y1YjUxYWRkMTQz
14
+ NzkwMzc1NzE3MTYzZjhkZmRhNzYzYmIyMDZhZDk2MzVmZjQ0NzdhMGM5NTdm
15
+ ZWNlMDc1NGRiMWQzOTY0ZDBmYzFhZTA0MDI2ZjQ4Mjk5ZDRiZTE=
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
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: x86-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
@@ -48,6 +48,7 @@ files:
48
48
  - ext/concurrent/ruby_193_compatible.h
49
49
  - lib/concurrent/1.9/extension.so
50
50
  - lib/concurrent/2.0/extension.so
51
+ - lib/concurrent/2.1/extension.so
51
52
  - lib/concurrent/atomic_reference/concurrent_update_error.rb
52
53
  - lib/concurrent/atomic_reference/direct_update.rb
53
54
  - lib/concurrent/atomic_reference/numeric_cas_wrapper.rb
@@ -68,9 +69,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
69
  version: 1.9.3
69
70
  required_rubygems_version: !ruby/object:Gem::Requirement
70
71
  requirements:
71
- - - ! '>'
72
+ - - ! '>='
72
73
  - !ruby/object:Gem::Version
73
- version: 1.3.1
74
+ version: '0'
74
75
  requirements: []
75
76
  rubyforge_project:
76
77
  rubygems_version: 2.4.5