File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
LIB_GITHUB_RELEASES = [
23
23
{
24
24
file : "libdatadog-aarch64-alpine-linux-musl.tar.gz" ,
25
- sha256 : "7c69a37cb335260610b61ae956192a6dbd104d05a8278c8ff894dbfebc2efd53 " ,
25
+ sha256 : "5cf54178ec492b0a44ad82d41eb2099ed412a9a7d56a49d7e7af7139ee1f985c " ,
26
26
ruby_platform : "aarch64-linux-musl"
27
27
} ,
28
28
{
29
29
file : "libdatadog-aarch64-unknown-linux-gnu.tar.gz" ,
30
- sha256 : "606b23f4de7defacd5d4a381816f8d7bfe26112c97fcdf21ec2eb998a6c5fbbd " ,
30
+ sha256 : "c9aa49fe7a6b80e354ee5134736431ff61139ea1bab516b63a48a2bce3bebeca " ,
31
31
ruby_platform : "aarch64-linux"
32
32
} ,
33
33
{
34
34
file : "libdatadog-x86_64-alpine-linux-musl.tar.gz" ,
35
- sha256 : "2008886021ddee573c0d539626d1d58d41e2a7dbc8deca22b3662da52de6f4d9 " ,
35
+ sha256 : "7b21231bb9c61993d425a45b6ae8ecede0cdac4a24c551b5bedebc0520721706 " ,
36
36
ruby_platform : "x86_64-linux-musl"
37
37
} ,
38
38
{
39
39
file : "libdatadog-x86_64-unknown-linux-gnu.tar.gz" ,
40
- sha256 : "4e5b05515ab180aec0819608aa5d277ff710055819654147a9d69caea27a0dbc " ,
40
+ sha256 : "3daf4bbac975e440c6e93f6ca39df5f96777a7eaee63ff974c89b2180daf58c5 " ,
41
41
ruby_platform : "x86_64-linux"
42
42
}
43
43
]
Original file line number Diff line number Diff line change 2
2
3
3
module Libdatadog
4
4
# Current libdatadog version
5
- LIB_VERSION = "19.1 .0"
5
+ LIB_VERSION = "21.0 .0"
6
6
7
7
GEM_MAJOR_VERSION = "1"
8
8
GEM_MINOR_VERSION = "0"
Original file line number Diff line number Diff line change 42
42
so_files . each do |so_file |
43
43
raw_symbols = `nm -D --defined-only #{ so_file } `
44
44
45
- symbols = raw_symbols . split ( "\n " ) . map { |it | it . split ( " " ) . last } . sort
45
+ symbols = raw_symbols . split ( "\n " ) . map { |symbol | symbol . split ( " " ) . last } . sort
46
46
expect ( symbols . size ) . to be > 20 # Quick sanity check
47
47
48
48
expect ( symbols ) . to all (
You can’t perform that action at this time.
0 commit comments