Skip to content

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ry755 committed May 9, 2024
1 parent 854afe7 commit cd83388
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fox32asm"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
build = "build.rs"

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ fn main() {
}

println!("Parsing file...");
let mut ast = match parse(&input_file) {
let ast = match parse(&input_file) {
Ok(x) => x,
Err(x) => {
println!("{:#?}", x);
Expand Down

0 comments on commit cd83388

Please sign in to comment.