concurrent-ruby-edge 0.6.0.pre1 → 0.6.0

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: 6c18b333341ffa01a55d75fa03ac91d29eaf3f8c7dfb73cf1fcc26c075d0ef93
4
- data.tar.gz: 025c9fd8f491a0d8a02c6927dc4c08d1e1274d8e42b755c8f31576d0a57fee7b
3
+ metadata.gz: 07bd4fa262a18699bf43156af7556a104b28183a278812f87a2000c6f471aa87
4
+ data.tar.gz: efbf99e09ebc0b5a813a1f51827fca255509cd7fca288864a7ef03db09ae705e
5
5
  SHA512:
6
- metadata.gz: a0bca2709598facfacc4619c63dd43cb41e7b0ebf5530f35480c0269115ce607eaca091a0dab1346328cde7c3c7c9d91bc963e62d4ae0ae9f7d077a0c3b003b4
7
- data.tar.gz: 1966dfc117e3f081df8c1c5eb7ad1ee07b691c0bf21f5980d9715891f99ac10a81a63e4309b277df1d03fb876e72fd81452ed1d663fa522c78025040d7ebf6dd
6
+ metadata.gz: b1f51066075fc76ea212ca3493cb390fa3596445f11fe35d346f7bbac2dfce95233513a07b8d0b31b55f25924212ce4e2804f0921247cee11ef602f8b28f2a3f
7
+ data.tar.gz: 1ee466164104b8bfccb7f386d721068d5b3018a65630231b2ba42ae94f04c42b58de8ff3228673f2e30a00c62bcf4a9fdb4b8989206b6a1d088c57990921aaf6
@@ -1,16 +1,24 @@
1
1
  ## Current
2
2
 
3
+ ## Release v1.1.6, edge v0.6.0 (10 Feb 2020)
4
+
5
+ concurrent-ruby:
6
+
7
+ * (#841) Concurrent.disable_at_exit_handlers! is no longer needed and was deprecated.
8
+ * (#841) AbstractExecutorService#auto_terminate= was deprecated and has no effect.
9
+ Set :auto_terminate option instead when executor is initialized.
10
+
3
11
  ## Release v1.1.6.pre1, edge v0.6.0.pre1 (26 Jan 2020)
4
12
 
5
13
  concurrent-ruby:
6
14
 
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)
15
+ * (#828) Allow to name executors, the name is also used to name their threads
16
+ * (#838) Implement #dup and #clone for structs
17
+ * (#821) Safer finalizers for thread local variables
10
18
  * 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)
19
+ * (#814) Use Ruby's Etc.nprocessors if available
20
+ * (#812) Fix directory structure not to mess with packaging tools
21
+ * (#840) Fix termination of pools on JRuby
14
22
 
15
23
  concurrent-ruby-edge:
16
24
 
@@ -15,7 +15,7 @@ module Concurrent
15
15
  include Enumerable
16
16
 
17
17
  # NOTE: Move to global IO pool once stable
18
- GOROUTINES = Concurrent::CachedThreadPool.new(auto_terminate: true)
18
+ GOROUTINES = Concurrent::CachedThreadPool.new
19
19
  private_constant :GOROUTINES
20
20
 
21
21
  BUFFER_TYPES = {
@@ -531,8 +531,8 @@ module Concurrent
531
531
  module FunctionShortcuts
532
532
  # Optionally included shortcut method for {Functions#spawn_actor}
533
533
  # @return [Pid]
534
- def spawn(*args, &body)
535
- spawn_actor(*args, &body)
534
+ def spawn(*args, **kwargs, &body)
535
+ spawn_actor(*args, **kwargs, &body)
536
536
  end
537
537
 
538
538
  # Optionally included shortcut method for {Functions#terminate_actor}
@@ -1,3 +1,3 @@
1
1
  module Concurrent
2
- EDGE_VERSION = '0.6.0.pre1'
2
+ EDGE_VERSION = '0.6.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concurrent-ruby-edge
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0.pre1
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jerry D'Antonio
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-01-26 00:00:00.000000000 Z
13
+ date: 2020-02-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: concurrent-ruby
@@ -18,14 +18,14 @@ dependencies:
18
18
  requirements:
19
19
  - - "~>"
20
20
  - !ruby/object:Gem::Version
21
- version: 1.1.6.pre1
21
+ version: 1.1.6
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - "~>"
27
27
  - !ruby/object:Gem::Version
28
- version: 1.1.6.pre1
28
+ version: 1.1.6
29
29
  description: |
30
30
  These features are under active development and may change frequently. They are expected not to
31
31
  keep backward compatibility (there may also lack tests and documentation). Semantic versions will
@@ -117,9 +117,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
117
117
  version: 1.9.3
118
118
  required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  requirements:
120
- - - ">"
120
+ - - ">="
121
121
  - !ruby/object:Gem::Version
122
- version: 1.3.1
122
+ version: '0'
123
123
  requirements: []
124
124
  rubyforge_project:
125
125
  rubygems_version: 2.7.9