concurrent-ruby-ext 1.1.5-x64-mingw32 → 1.1.6.pre1-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,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afbedb848466bfe0c361fbe814c37599f69dba2c6f86fd774bd8eca8d913951a
4
- data.tar.gz: ce88b948ae523f46c361d0ea072d594a592b9d8748910da4e6b76ba52548baf2
3
+ metadata.gz: 59168e938f407ab1ad9712a21ecc674a66661652545b8c8abd16ead62f903c94
4
+ data.tar.gz: 02150ca76089ae0760359c0a589cfb43bd4fccb54055eb694bf354de7af45340
5
5
  SHA512:
6
- metadata.gz: 4bcdd2e360926ad29f55819f54a5991484e20954e193c1c8f697f5b8c66be0b2d9d592a40e8d08f868641e0057d186660c975c591da42aae202bb9219b3b51c1
7
- data.tar.gz: 58b6aef455deab70f3ccf6b5115b7e66b9287befa6e0081f35fcadc33da717735cf4232aa73f6663b7587ceb93532be72675b5425c92d19d110ad9682838efb8
6
+ metadata.gz: e5c9ac51689a6eab4780f2d1386690f37054c86072b0a21a9a560242c7b29b4f02528d8b262ff472cebe403bb99adda7cb86ab4f34ddb30b83f1db3a53dfc0df
7
+ data.tar.gz: 58edb7a6830f2986a105eacc0b1d456b45726245d68bc1cd572d13fe6a07bcb1acf1918f0f22a4c6ad4477da77a3913a59cfc40c90dfd93097eabf302ab774ca
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: x64-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.