Skip to content

Commit 1e3672e

Browse files
authored
Package libdatadog 0.9.0 for Ruby (#58)
I'm following along the checklist at <https://github.com/DataDog/libdatadog/blob/main/ruby/README.md#releasing-a-new-version-to-rubygemsorg>
1 parent 64aa3e4 commit 1e3672e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ruby/Rakefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require "rubygems/package"
1111

1212
RSpec::Core::RakeTask.new(:spec)
1313

14-
LIB_VERSION_TO_PACKAGE = "0.8.0"
14+
LIB_VERSION_TO_PACKAGE = "0.9.0"
1515
unless LIB_VERSION_TO_PACKAGE.start_with?(Libdatadog::LIB_VERSION)
1616
raise "`LIB_VERSION_TO_PACKAGE` setting in <Rakefile> (#{LIB_VERSION_TO_PACKAGE}) does not match " \
1717
"`LIB_VERSION` setting in <lib/libdatadog/version.rb> (#{Libdatadog::LIB_VERSION})"
@@ -20,22 +20,22 @@ end
2020
LIB_GITHUB_RELEASES = [
2121
{
2222
file: "libdatadog-aarch64-alpine-linux-musl.tar.gz",
23-
sha256: "68919ddf9bc6491927bf16fb819b18fd052209d77774097b57f7879ebafc9bdf",
23+
sha256: "a094bae08153b521d467435e3ef5364d3099e4b8aac1291a16c70c51ccc2f171",
2424
ruby_platform: "aarch64-linux-musl"
2525
},
2626
{
2727
file: "libdatadog-aarch64-unknown-linux-gnu.tar.gz",
28-
sha256: "9c6dd7058c7d0c9af8ffe18b4565fcda08462debc81f60ce0eb87aa5f7b74a0b",
28+
sha256: "9e55e8917521edf57c28bc2dad363bcc0a68570380480244f898714e31f356fb",
2929
ruby_platform: "aarch64-linux"
3030
},
3131
{
3232
file: "libdatadog-x86_64-alpine-linux-musl.tar.gz",
33-
sha256: "e410300255d93f016562e7e072dcb09f94d0550ff3e289f97fff4cd155a4d3a4",
33+
sha256: "15e6d94208b94ff5f0e757310c8de372da67099e982d6ebd5cc88fdf8d9c2756",
3434
ruby_platform: "x86_64-linux-musl"
3535
},
3636
{
3737
file: "libdatadog-x86_64-unknown-linux-gnu.tar.gz",
38-
sha256: "94f52edaed31f8c2a25cd569b0b065f8bb221120706d57ef2ca592b0512333f2",
38+
sha256: "277d638d7e1cd9c6724ba3094fab5ce0e3a87a2c26b1cf0a89a86ae2a7f1ddc8",
3939
ruby_platform: "x86_64-linux"
4040
}
4141
]

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 = "0.8.0"
5+
LIB_VERSION = "0.9.0"
66

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

0 commit comments

Comments
 (0)