Skip to content

Commit 90f3302

Browse files
authored
Merge pull request Homebrew#195818 from Homebrew/bump-inko-0.17.0
inko 0.17.0
2 parents 74eb19b + aed30a9 commit 90f3302

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

Formula/i/inko.rb

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
class Inko < Formula
22
desc "Safe and concurrent object-oriented programming language"
33
homepage "https://inko-lang.org/"
4-
url "https://releases.inko-lang.org/0.16.0.tar.gz"
5-
sha256 "7850dc9b0f6e544977a6eb3854022131f30e49e43b99f47cc5aefb77e0b97c32"
4+
url "https://releases.inko-lang.org/0.17.0.tar.gz"
5+
sha256 "d97e1b898fd3de946dab5559c587cab0bcf7f3df40a43266d5b9e0a14f03202a"
66
license "MPL-2.0"
7-
revision 1
87
head "https://github.com/inko-lang/inko.git", branch: "main"
98

109
bottle do
11-
sha256 cellar: :any, arm64_sequoia: "dfe49ede4263ebeb9337104cc3c70e97d2348a4c9dadc57b6595f0b066f02000"
12-
sha256 cellar: :any, arm64_sonoma: "ebbc0a383ee4e2bcbb0c0628a89bfd08338296935327e129eb3d34e53e68ca94"
13-
sha256 cellar: :any, arm64_ventura: "be38b32949b5f9e0f291c910cfa193604b93056f1498004723f1d16af038da02"
14-
sha256 cellar: :any, sonoma: "b4fd1b5448f2284f943a7c3fcd0c01df2d81341e6f10e253b08acb22a62f013c"
15-
sha256 cellar: :any, ventura: "90f90e0d1d5719c6fbd26502f4b3d0c87e08f1f857c4af151971fd061fc8fb8d"
16-
sha256 cellar: :any_skip_relocation, x86_64_linux: "10cacd5af2ce222ed3f5610f52f59516f0b9847d8b10d0761d60e4f00d7037fc"
10+
sha256 cellar: :any, arm64_sequoia: "d54272ae0638dfabf26a73708365218cec4bfe02248eb628fa4570eac9e69e10"
11+
sha256 cellar: :any, arm64_sonoma: "d16b0f9c5ddf61d12fed1756537aa712f9b0ba82f5d45dca924e3605611c99c1"
12+
sha256 cellar: :any, arm64_ventura: "768d5f7db84747116d1fc6c59cf1fe3f046f5b4e3ac1fd0bc0fc8806b7f76b6d"
13+
sha256 cellar: :any, sonoma: "f194d58ffad8d207d24544d78ff0d5c05c471aad34cb1910e3f8102b3d6d9f17"
14+
sha256 cellar: :any, ventura: "f8deb56f32f1bef8c16b4435a65aea0fda2c70d32ff7df074b1e9bfb3bb30d31"
15+
sha256 cellar: :any_skip_relocation, x86_64_linux: "1ede8a28659804084deaedd7a5936ccb5ad6bb3283ce9ffc6079ea008dc993c4"
1716
end
1817

1918
depends_on "coreutils" => :build
@@ -38,11 +37,11 @@ def install
3837

3938
test do
4039
(testpath/"hello.inko").write <<~EOS
41-
import std.stdio (STDOUT)
40+
import std.stdio (Stdout)
4241
4342
class async Main {
4443
fn async main {
45-
STDOUT.new.print('Hello, world!')
44+
Stdout.new.print('Hello, world!')
4645
}
4746
}
4847
EOS

0 commit comments

Comments
 (0)