diff --git a/CHANGELOG.md b/CHANGELOG.md index 53d00e9..573e04b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Remodel Changelog ## Unreleased Changes + +## 0.7.1 (2020-07-06) * Fixed first argument to `remodel run` script being eaten by Remodel. ([#19](https://github.com/Roblox/remodel/issues/19)) ## 0.7.0 (2020-04-19) diff --git a/Cargo.lock b/Cargo.lock index 0f034da..54f513b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1049,7 +1049,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "remodel" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index b764275..dbd6fba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "remodel" -version = "0.7.0" +version = "0.7.1" description = "A tool to read, modify, and write Roblox objects." authors = ["Lucien Greathouse "] edition = "2018" diff --git a/README.md b/README.md index 8ff79e0..47a19af 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Remodel can be installed with Foreman, a toolchain manager for Roblox projects: ```toml [tools] -remodel = { source = "Roblox/remodel", version = "0.6.1" } +remodel = { source = "Roblox/remodel", version = "0.7.1" } ``` ### From GitHub Releases