concurrent-ruby 1.1.2 → 1.1.3

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: b989ff504545fbd515aa9623e18515993f30d758768702fd48775efbf1eb68da
4
- data.tar.gz: 6de4e1598114ce722b56eb2ca567d75dd8828afb998252bdb46906e2578f943d
3
+ metadata.gz: e771744bb5e8ed6f2e29f284b92dc82c86052313e32ca6113ca14866316e888b
4
+ data.tar.gz: 72f694ab26e04d3d0eba6966d22dc124e6c047bd34d0531c9f7c33ffca0f2962
5
5
  SHA512:
6
- metadata.gz: b81c2d2d16e02a03ef0e77c8d633280c02946472e7a762de733da0ee7203c2227ccb09ce5f03835446db42f0bef78df55a2158a787eea3620b1c228a234836df
7
- data.tar.gz: f5ca5bacf3edbc0cf9894d94b8a3c3bc4aef173e4122c6a9cae84d257a3d3df5ada3280431c14f8e33b328348ce039af9a278975954daccb5aea916bad18a1fa
6
+ metadata.gz: 5b351d16a4a900ecefcfddfe282e30ab7c4c022c71aa3d596199cb9a4816adcc8eeedba6a219b8f239bba73ce992403ac40e9d4eb83038713edee9705262677c
7
+ data.tar.gz: 8a49539c89fe3f073a0a89c1c79453a49132c0ba5ce575172f9592b62be98e35136f0c216c80660f1e0489c5b33ca62a7db5575866794231b0d81d0f0665c03d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## Current
2
2
 
3
+ ## Release v1.1.3 (7 Nov 2018)
4
+
5
+ * (#775) fix partial require of the gem (although not officially supported)
6
+
7
+ ## Release v1.1.2 (6 Nov 2018)
8
+
9
+ * (#773) more defensive 1.9.3 support
10
+
3
11
  ## Release v1.1.1, edge v0.4.1 (1 Nov 2018)
4
12
 
5
13
  * (#768) add support for 1.9.3 back
data/Rakefile CHANGED
@@ -163,6 +163,7 @@ begin
163
163
  "{Concurrent::#{$1} #{$1}}"
164
164
  end
165
165
  end
166
+ FileUtils.mkpath 'tmp'
166
167
  File.write 'tmp/README.md', content
167
168
  end
168
169
  end
Binary file
@@ -4,6 +4,7 @@ require 'concurrent/errors'
4
4
  require 'concurrent/atomic/atomic_reference'
5
5
  require 'concurrent/concern/logging'
6
6
  require 'concurrent/executor/immediate_executor'
7
+ require 'concurrent/executor/cached_thread_pool'
7
8
  require 'concurrent/utility/at_exit'
8
9
  require 'concurrent/utility/processor_counter'
9
10
 
@@ -1,4 +1,4 @@
1
1
  module Concurrent
2
- VERSION = '1.1.2'
2
+ VERSION = '1.1.3'
3
3
  EDGE_VERSION = '0.4.1'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concurrent-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
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: 2018-11-06 00:00:00.000000000 Z
13
+ date: 2018-11-07 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: |
16
16
  Modern concurrency tools including agents, futures, promises, thread pools, actors, supervisors, and more.