concurrent-ruby-ext 1.1.5-x86-mingw32 → 1.1.6.pre1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0da0b34556e703a0c659496d9fa3bde454674740bf0cf468abd48ca606e33bc1
4
- data.tar.gz: 2478a9cf1374b46132c6a2cd003f419e8aaee08ddd3f37797294c6f818ac720d
3
+ metadata.gz: e686510b013414d5334015f9f942c8ff743c2b75fcddecdf663fa83e87748dcb
4
+ data.tar.gz: fe95f8c4fd7ff33a66466fbe26a8577b0a338af1babb5a74d71a6da208e6c571
5
5
  SHA512:
6
- metadata.gz: e861d3c1f330672ba08d534e68a9cb2cb3bc4a2a3c95c5d36619b52b0320d056b516c47b5cdb5fd3361db6f3c2a8b3f6d80980768b73228e93faef332d2f8332
7
- data.tar.gz: 568ce5f50150b3190cd6be5b99d383b51c880c7dd0f77e8f75e5b5086b895846526fa0cff33e6065be37469a265cc2d981ec60bd771d6f07a2f065d370d7c21b
6
+ metadata.gz: bc2b69fceb7e23de7cb45d5ca00eb3eb62634c6a4e3508529644289f001e9c4f1053770c4d6413c66873e803f46b89fe72dc42d8f7426836388cd0338287d7dd
7
+ data.tar.gz: 3cc4d8ed3d5de45c9749b70a66e0b6ee618aebbb4688a7fbd682a05a1ce533c3c04e8410aa76301a4643a188077af404245316594facff767c33c9b336bb2830
data/CHANGELOG.md CHANGED
@@ -1,6 +1,22 @@
1
1
  ## Current
2
2
 
3
- ## Release v1.1.5, edge v0.5.0 (10 mar 2019)
3
+ ## Release v1.1.6.pre1, edge v0.6.0.pre1 (26 Jan 2020)
4
+
5
+ concurrent-ruby:
6
+
7
+ * Allow to name executors, the name is also used to name their threads (#828)
8
+ * Implement #dup and #clone for structs (#838)
9
+ * Safer finalizers for thread local variables (#821)
10
+ * Documentation fixes
11
+ * Use Ruby's Etc.nprocessors if available (#814)
12
+ * Fix directory structure not to mess with packaging tools (#812)
13
+ * Fix termination of pools on JRuby (#840)
14
+
15
+ concurrent-ruby-edge:
16
+
17
+ * Add WrappingExecutor (#830)
18
+
19
+ ## Release v1.1.5, edge v0.5.0 (10 Mar 2019)
4
20
 
5
21
  concurrent-ruby:
6
22
 
data/README.md CHANGED
@@ -253,6 +253,9 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
253
253
  * [ErlangActor](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/ErlangActor.html)
254
254
  Actor implementation which precisely matches Erlang actor behaviour.
255
255
  Requires at least Ruby 2.1 otherwise it's not loaded.
256
+ * [WrappingExecutor](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/WrappingExecutor.html)
257
+ A delegating executor which modifies each task before the task is given to
258
+ the target executor it delegates to.
256
259
 
257
260
  ## Supported Ruby versions
258
261
 
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.5
4
+ version: 1.1.6.pre1
5
5
  platform: x86-mingw32
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: 2019-03-11 00:00:00.000000000 Z
12
+ date: 2020-01-26 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.5
20
+ version: 1.1.6.pre1
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.5
27
+ version: 1.1.6.pre1
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.
@@ -48,11 +48,11 @@ files:
48
48
  - ext/concurrent-ruby-ext/extconf.rb
49
49
  - ext/concurrent-ruby-ext/rb_concurrent.c
50
50
  - ext/concurrent-ruby-ext/ruby_193_compatible.h
51
- - lib/concurrent/2.2/concurrent_ruby_ext.so
52
- - lib/concurrent/2.3/concurrent_ruby_ext.so
53
- - lib/concurrent/2.4/concurrent_ruby_ext.so
54
- - lib/concurrent/2.5/concurrent_ruby_ext.so
55
- - lib/concurrent/2.6/concurrent_ruby_ext.so
51
+ - lib/concurrent-ruby/concurrent/2.2/concurrent_ruby_ext.so
52
+ - lib/concurrent-ruby/concurrent/2.3/concurrent_ruby_ext.so
53
+ - lib/concurrent-ruby/concurrent/2.4/concurrent_ruby_ext.so
54
+ - lib/concurrent-ruby/concurrent/2.5/concurrent_ruby_ext.so
55
+ - lib/concurrent-ruby/concurrent/2.6/concurrent_ruby_ext.so
56
56
  homepage: http://www.concurrent-ruby.com
57
57
  licenses:
58
58
  - MIT
@@ -71,12 +71,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
71
71
  version: 2.7.dev
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ">="
74
+ - - ">"
75
75
  - !ruby/object:Gem::Version
76
- version: '0'
76
+ version: 1.3.1
77
77
  requirements: []
78
78
  rubyforge_project:
79
- rubygems_version: 2.7.8
79
+ rubygems_version: 2.7.9
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: C extensions to optimize concurrent-ruby under MRI.