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 Oct 9, 2023
1 parent 4b2fc7c commit bd19dc5
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 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 = "3.0.0";
let compiler_version = "3.0.1";

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 = compiler.compile(input, path, entrypoint, false, validate_address, compile.test, compile.output!);
let result or err = compiler.compile(
input,
path,
entrypoint,
false,
validate_address,
compile.test,
compile.output!,
);
if err != nil {
err_println(err!.message);

Expand Down

0 comments on commit bd19dc5

Please sign in to comment.