Skip to content

Commit 95381ae

Browse files
2xburntisburnt
andauthored
xiond-v19.0.2 (#33)
Co-authored-by: developer <[email protected]>
1 parent 76f3f94 commit 95381ae

File tree

3 files changed

+69
-21
lines changed

3 files changed

+69
-21
lines changed

Formula/xiond.rb

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
class Xiond < Formula
66
desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network."
77
homepage "https://xion.burnt.com/"
8-
version "19.0.1"
8+
version "19.0.2"
99
license "Apache2.0"
1010

1111
on_macos do
1212
if Hardware::CPU.intel?
13-
url "https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_darwin_amd64.tar.gz"
14-
sha256 "f350e2ab0cc08c18acce0d6518bd4f29ac88f1c331eb10d3ca43ec3e74103521"
13+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_amd64.tar.gz"
14+
sha256 "edda13aec2274f1eceb933874a885d055b14acbbe0de21ba61ed9c25c64813d6"
1515

1616
def install
1717
bin.install "xiond"
1818
end
1919
end
2020
if Hardware::CPU.arm?
21-
url "https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_darwin_arm64.tar.gz"
22-
sha256 "9c2944de98c54f4e8517259d0782daca4c43900887b7d7c19044ba75b6e2976d"
23-
21+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_arm64.tar.gz"
22+
sha256 "7b94d2fdf1baa1d3dff4f947858a2bac684257be27f8bf179fb973ee8dd4fdb8"
23+
2424
def install
2525
bin.install "xiond"
2626
end
@@ -29,17 +29,15 @@ def install
2929

3030
on_linux do
3131
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
32-
url "https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_linux_amd64.tar.gz"
33-
sha256 "5350ccf4fb83f086f772ceebd8a1c3788c2fa64ad1976d92052842e23a1977c3"
34-
32+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_amd64.tar.gz"
33+
sha256 "6072ce81d08f77f98e2d2ae7726007eca18579ea2b1690b5f76b4df782690dcb"
3534
def install
3635
bin.install "xiond"
3736
end
3837
end
3938
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
40-
url "https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_linux_arm64.tar.gz"
41-
sha256 "efed79d4b240c6edaa4488b54e7efcbff89313c0f0ed6e1682dab0f1d97315c2"
42-
39+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_arm64.tar.gz"
40+
sha256 "0a55360653b596da5ace43c3b4a3fef6c9785bfe0e73405f591768b449af0e70"
4341
def install
4442
bin.install "xiond"
4543
end

Formula/[email protected]

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# typed: false
2+
# frozen_string_literal: true
3+
4+
# This file was generated by GoReleaser. DO NOT EDIT.
5+
class XiondAT1902 < Formula
6+
desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network."
7+
homepage "https://xion.burnt.com/"
8+
version "19.0.2"
9+
license "Apache2.0"
10+
11+
on_macos do
12+
if Hardware::CPU.intel?
13+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_amd64.tar.gz"
14+
sha256 "edda13aec2274f1eceb933874a885d055b14acbbe0de21ba61ed9c25c64813d6"
15+
16+
def install
17+
bin.install "xiond"
18+
end
19+
end
20+
if Hardware::CPU.arm?
21+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_arm64.tar.gz"
22+
sha256 "7b94d2fdf1baa1d3dff4f947858a2bac684257be27f8bf179fb973ee8dd4fdb8"
23+
24+
def install
25+
bin.install "xiond"
26+
end
27+
end
28+
end
29+
30+
on_linux do
31+
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
32+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_amd64.tar.gz"
33+
sha256 "6072ce81d08f77f98e2d2ae7726007eca18579ea2b1690b5f76b4df782690dcb"
34+
def install
35+
bin.install "xiond"
36+
end
37+
end
38+
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
39+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_arm64.tar.gz"
40+
sha256 "0a55360653b596da5ace43c3b4a3fef6c9785bfe0e73405f591768b449af0e70"
41+
def install
42+
bin.install "xiond"
43+
end
44+
end
45+
end
46+
47+
test do
48+
system "#{bin}/xiond version"
49+
end
50+
end

Formula/[email protected]

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
class XiondAT19 < Formula
66
desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network."
77
homepage "https://xion.burnt.com/"
8-
version "19.0.1"
8+
version "19.0.2"
99
license "Apache2.0"
1010

1111
on_macos do
1212
if Hardware::CPU.intel?
13-
url "https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_darwin_amd64.tar.gz"
14-
sha256 "f350e2ab0cc08c18acce0d6518bd4f29ac88f1c331eb10d3ca43ec3e74103521"
13+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_amd64.tar.gz"
14+
sha256 "edda13aec2274f1eceb933874a885d055b14acbbe0de21ba61ed9c25c64813d6"
1515

1616
def install
1717
bin.install "xiond"
1818
end
1919
end
2020
if Hardware::CPU.arm?
21-
url "https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_darwin_arm64.tar.gz"
22-
sha256 "9c2944de98c54f4e8517259d0782daca4c43900887b7d7c19044ba75b6e2976d"
21+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_arm64.tar.gz"
22+
sha256 "7b94d2fdf1baa1d3dff4f947858a2bac684257be27f8bf179fb973ee8dd4fdb8"
2323

2424
def install
2525
bin.install "xiond"
@@ -29,15 +29,15 @@ def install
2929

3030
on_linux do
3131
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
32-
url "https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_linux_amd64.tar.gz"
33-
sha256 "5350ccf4fb83f086f772ceebd8a1c3788c2fa64ad1976d92052842e23a1977c3"
32+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_amd64.tar.gz"
33+
sha256 "6072ce81d08f77f98e2d2ae7726007eca18579ea2b1690b5f76b4df782690dcb"
3434
def install
3535
bin.install "xiond"
3636
end
3737
end
3838
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
39-
url "https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_linux_arm64.tar.gz"
40-
sha256 "efed79d4b240c6edaa4488b54e7efcbff89313c0f0ed6e1682dab0f1d97315c2"
39+
url "https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_arm64.tar.gz"
40+
sha256 "0a55360653b596da5ace43c3b4a3fef6c9785bfe0e73405f591768b449af0e70"
4141
def install
4242
bin.install "xiond"
4343
end

0 commit comments

Comments
 (0)