aws-crt 0.1.6-aarch64-linux → 0.1.7-aarch64-linux

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: 136d082106b04103a43074269d3e5feb2c34eb3fc26219c68426ef15adc3e579
4
- data.tar.gz: 70e201d190c212d27b42e8b11b98e896e4c1b9c1c7cec65ca06174b14d54354b
3
+ metadata.gz: bc1174d1d51955e613ee21c303a26b42356d2656ddaf11ad7f4672e7bac50080
4
+ data.tar.gz: 4f18f1f1f6c0c29c19abf15c222a41fd38f7af1efa8a14936bd1ede5ff9d4c92
5
5
  SHA512:
6
- metadata.gz: d73e8e01c7ba97daf2bf8e5e5e8d7dbdc8e55d8bbfacbc9774de78c7cdd99cbfcf5cb053bbf1c9ed44f2e01f34460649a3a552b523822e260446b63adbbea0b7
7
- data.tar.gz: f5c57a66a168f7133f9222932521f6c18d73edf57d5cb46294b57f000ec8e8a9b292acf001f9b28a515ca68ae89a767de86a5b5f99c0afddd4635ac266e15ec6
6
+ metadata.gz: 4aa785bef10b1600d03bfec4f57a99f4e02fb58d084bc1b842da6727ec38333453a973f62630b69c1e6626ce3c5abd191042fb49b4371059120bacb3d19eb210
7
+ data.tar.gz: 32dec43374a68b1e51a9b25635fb0d98d147c8602c4f6a0f88f5fed82143565e722ef7cc2110be26308211084831502fa04ad969de69bb7bd5c16c2bc693b87d
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
@@ -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: aarch64-linux
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