Skip to content

Commit 52bd9a9

Browse files
authored
Update necessary files to release a new version of the rubygem (#1223)
* Update necessary files to release a new version of the rubygem * Fix a standardrb issue where it doesn't want it used as a variable name in a test
1 parent 6e9fc38 commit 52bd9a9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ruby/Rakefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,22 @@ end
2222
LIB_GITHUB_RELEASES = [
2323
{
2424
file: "libdatadog-aarch64-alpine-linux-musl.tar.gz",
25-
sha256: "7c69a37cb335260610b61ae956192a6dbd104d05a8278c8ff894dbfebc2efd53",
25+
sha256: "5cf54178ec492b0a44ad82d41eb2099ed412a9a7d56a49d7e7af7139ee1f985c",
2626
ruby_platform: "aarch64-linux-musl"
2727
},
2828
{
2929
file: "libdatadog-aarch64-unknown-linux-gnu.tar.gz",
30-
sha256: "606b23f4de7defacd5d4a381816f8d7bfe26112c97fcdf21ec2eb998a6c5fbbd",
30+
sha256: "c9aa49fe7a6b80e354ee5134736431ff61139ea1bab516b63a48a2bce3bebeca",
3131
ruby_platform: "aarch64-linux"
3232
},
3333
{
3434
file: "libdatadog-x86_64-alpine-linux-musl.tar.gz",
35-
sha256: "2008886021ddee573c0d539626d1d58d41e2a7dbc8deca22b3662da52de6f4d9",
35+
sha256: "7b21231bb9c61993d425a45b6ae8ecede0cdac4a24c551b5bedebc0520721706",
3636
ruby_platform: "x86_64-linux-musl"
3737
},
3838
{
3939
file: "libdatadog-x86_64-unknown-linux-gnu.tar.gz",
40-
sha256: "4e5b05515ab180aec0819608aa5d277ff710055819654147a9d69caea27a0dbc",
40+
sha256: "3daf4bbac975e440c6e93f6ca39df5f96777a7eaee63ff974c89b2180daf58c5",
4141
ruby_platform: "x86_64-linux"
4242
}
4343
]

ruby/lib/libdatadog/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module Libdatadog
44
# Current libdatadog version
5-
LIB_VERSION = "19.1.0"
5+
LIB_VERSION = "21.0.0"
66

77
GEM_MAJOR_VERSION = "1"
88
GEM_MINOR_VERSION = "0"

ruby/spec/gem_packaging.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
so_files.each do |so_file|
4343
raw_symbols = `nm -D --defined-only #{so_file}`
4444

45-
symbols = raw_symbols.split("\n").map { |it| it.split(" ").last }.sort
45+
symbols = raw_symbols.split("\n").map { |symbol| symbol.split(" ").last }.sort
4646
expect(symbols.size).to be > 20 # Quick sanity check
4747

4848
expect(symbols).to all(

0 commit comments

Comments
 (0)