Skip to content

Commit

Permalink
chore: bump the version
Browse files Browse the repository at this point in the history
  • Loading branch information
myuon committed Sep 23, 2023
1 parent 9b07d77 commit ac56e32
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions quartz/main.qz
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ module CliCommand {
}

fun start(): nil or error {
let compiler_version = "2.11.1";
let compiler_version = "2.11.2";

let args = args();
let command or err = CliCommand::parse(args.slice(1, args.length));
Expand Down Expand Up @@ -317,7 +317,15 @@ fun start(): nil or error {
validate_address = compile.validate_address!;
}

let result or err = run(compiler, input, path, entrypoint, validate_address, compiler_version, compile.test);
let result or err = run(
compiler,
input,
path,
entrypoint,
validate_address,
compiler_version,
compile.test,
);
if err != nil {
write_string(fd_stderr, format("Error: {}", err!.message));
write_string(fd_stderr, "\n");
Expand Down Expand Up @@ -609,3 +617,4 @@ fun main() {
panic("{}", err!.message);
}
}

0 comments on commit ac56e32

Please sign in to comment.