concurrent-ruby-ext 1.1.3-x64-mingw32 → 1.1.4-x64-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: abd4f6bce88ff54781b83c3bdfaa62705bcb03a79493c55c36c7eec8a386333b
4
- data.tar.gz: 9943999a47c30f6e7c1a714dff074ab7211ae300d5886dda9767cdb3e1d7115c
3
+ metadata.gz: 2db351ac329bafd36e9d55ea5e60323f4472f82a5fb78744b9c9a5daf1fe1d15
4
+ data.tar.gz: 119211e5d541b27d00b1799a7b0529a2b999c5cda0404cc8e2684eaee258708a
5
5
  SHA512:
6
- metadata.gz: 7cde6b5dc86ffa62f0d9fbf04e9cacf873cbf1e53525dd6879cd83a0d74ccd08597f07a2f8fbbe58fa1c3645945a857f6412795185ca992a09665a5f4e0a9d73
7
- data.tar.gz: 15d31cbbbc9652a24be9eee7aa0d18b1753268c6742e26a1370856f6a9631b33a363b05791619b8bb8a7797c18f8259a79de7ebec3db83c62d068592b105e314
6
+ metadata.gz: 685733b837bb95d2c9e8c8b1c5f3732361161a4ea91f528455e3e75906bd88fba903fcb79a9e788f17e3ac2164692f30b67158b7f61e6e1e4540c36637ea055a
7
+ data.tar.gz: c0644077d46b907b7c52e28f72fd15c6f6bba5e8d9a5d542f4b9886229c0a6da3aabddf4be7600d028509f1e44312b1c2cc331375ca79b477d905122369baa78
@@ -1,5 +1,10 @@
1
1
  ## Current
2
2
 
3
+ ## Release v1.1.4 (14 Dec 2018)
4
+
5
+ * (#780) Remove java_alias of 'submit' method of Runnable to let executor service work on java 11
6
+ * (#776) Fix NameError on defining a struct with a name which is already taken in an ancestor
7
+
3
8
  ## Release v1.1.3 (7 Nov 2018)
4
9
 
5
10
  * (#775) fix partial require of the gem (although not officially supported)
data/README.md CHANGED
@@ -43,7 +43,7 @@ appreciate your help. Would you like to contribute? Great! Have a look at
43
43
 
44
44
  *Concurrent Ruby makes one of the strongest thread safety guarantees of any Ruby concurrency
45
45
  library, providing consistent behavior and guarantees on all three of the main Ruby interpreters
46
- (MRI/CRuby, JRuby, and Rubinius).*
46
+ (MRI/CRuby, JRuby, Rubinius, TruffleRuby).*
47
47
 
48
48
  Every abstraction in this library is thread safe. Specific thread safety guarantees are documented
49
49
  with each abstraction.
@@ -59,7 +59,7 @@ Concurrent Ruby is also the only Ruby library which provides a full suite of thr
59
59
  immutable variable types and data structures.
60
60
 
61
61
  We've also initiated discussion to document [memory model](docs-source/synchronization.md) of Ruby which
62
- would provide consistent behaviour and guarantees on all three of the main Ruby interpreters
62
+ would provide consistent behaviour and guarantees on all four of the main Ruby interpreters
63
63
  (MRI/CRuby, JRuby, Rubinius, TruffleRuby).
64
64
 
65
65
  ## Features & Documentation
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.3
4
+ version: 1.1.4
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: 2018-11-07 00:00:00.000000000 Z
12
+ date: 2018-12-15 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.3
20
+ version: 1.1.4
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.3
27
+ version: 1.1.4
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.