From b0773b2d961c307d6ac666e6fb2e76e3661d875d Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Sun, 19 Apr 2020 14:17:34 -0700 Subject: [PATCH] Release 0.7.0 --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7135076..e7f3fbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Remodel Changelog ## Unreleased Changes + +## 0.7.0 (2020-04-19) * **Breaking**: Moved script execution to `remodel run` to make room for new subcommands. * If you previously used `remodel foo.lua`, use `remodel run foo.lua` now. * Added `--verbose` and `-v` flags for setting verbosity. diff --git a/Cargo.lock b/Cargo.lock index 388486b..15cb6dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1258,7 +1258,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "remodel" -version = "0.6.1" +version = "0.7.0" 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 c08c248..c809b4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "remodel" -version = "0.6.1" +version = "0.7.0" description = "A tool to read, modify, and write Roblox objects." authors = ["Lucien Greathouse "] edition = "2018" diff --git a/README.md b/README.md index 867dd57..d55e9e3 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Remodel is a command line tool for manipulating Roblox files and the instances contained within them. It's intended as a building block for Roblox automation tooling. -Remodel is still in early development, but much of its API is already fairly stable. Feedback is welcome! +Remodel is still in early development, but much of its API is already stable. Feedback is welcome! ## Installation @@ -315,7 +315,7 @@ On Windows, Remodel will attempt to use the cookie from a logged in Roblox Studi To give a different auth cookie to Remodel, use the `--auth` argument: ``` -remodel foo.lua --auth "$MY_AUTH_COOKIE" +remodel run foo.lua --auth "$MY_AUTH_COOKIE" ``` You can also define the `REMODEL_AUTH` environment variable to avoid passing `--auth` as an argument.