aws-crt 0.1.6-universal-java → 0.1.7-universal-java

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: 4d6f2ffb361875b976f0b2715783d1b2ef3020136b7cc6af458bd6e61b1ee228
4
- data.tar.gz: 5e08db11ca760bdc4dc51ca064bd8a800f84027384719e9f0fe927e2cf8e3499
3
+ metadata.gz: 19aaaf129940dd7ce9df7541acbc2076a3aaad1c62913a82a03bf64cf5a2066d
4
+ data.tar.gz: 43264b43e754e16afd908ab9f003582b599982fad5f7a709de55f4e2cebaca48
5
5
  SHA512:
6
- metadata.gz: 046dff4beaaf904501ad4356d46b901ae4012d57f76c1a8ed2a9ec639589f5547467fcf58a1cd2f0731b629019f8f2ecd938de5d7dcd4a0861af609a2e384b61
7
- data.tar.gz: da1e88bb4c9feadfdb490c66c434328bec1ad3d69b49f73cb2fc63c8c18a09979cbbfcd7b8ca8f87cbbee19f22cbcba442d492876f3dcf64a36b90056932aa43
6
+ metadata.gz: 6cf5fded89670ebca491f16cb7ea6e560eb5ac24e83c2a875c578da2f66d3a7ed30e07edaaeea4c8ef1d09731b52c99e638a56f18f9af8ee467d3c752cbc7745
7
+ data.tar.gz: 3314daa2491883cb42374e136eb317baadedb2a21fb533240766b50c9d34e776fdd3c5d31c69ba85565c8e5330eebe0caab43a67c38b375589bb818b492636be
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 0.1.7 (2023-02-03)
5
+ ------------------
6
+
7
+ * Issue - Update to the latest aws-crt-ffi.
8
+ * Issue - Add support for overriding crt_bin_dir with `AWS_CRT_RUBY_BIN_DIR`.
9
+
4
10
  0.1.6 (2022-08-12)
5
11
  ------------------
6
12
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.6
1
+ 0.1.7
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'time'
4
+ require 'set'
4
5
 
5
6
  module Aws
6
7
  module Crt
@@ -27,7 +27,9 @@ end
27
27
 
28
28
  # @return [String] return the directory of the CRT library for the platform
29
29
  def crt_bin_dir(platform)
30
- File.expand_path("../../bin/#{platform.cpu}", File.dirname(__FILE__))
30
+ ENV['AWS_CRT_RUBY_BIN_DIR'] ||
31
+ File.expand_path("../../bin/#{platform.cpu}",
32
+ File.dirname(__FILE__))
31
33
  end
32
34
 
33
35
  # @return [String] return the path to the CRT library for the platform
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-crt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: universal-java
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-15 00:00:00.000000000 Z
11
+ date: 2023-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi