Skip to content
This repository was archived by the owner on Jul 22, 2023. It is now read-only.

Commit b0773b2

Browse files
committed
Release 0.7.0
1 parent 926ee15 commit b0773b2

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Remodel Changelog
22

33
## Unreleased Changes
4+
5+
## 0.7.0 (2020-04-19)
46
* **Breaking**: Moved script execution to `remodel run` to make room for new subcommands.
57
* If you previously used `remodel foo.lua`, use `remodel run foo.lua` now.
68
* Added `--verbose` and `-v` flags for setting verbosity.

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "remodel"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
description = "A tool to read, modify, and write Roblox objects."
55
authors = ["Lucien Greathouse <[email protected]>"]
66
edition = "2018"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
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.
88

9-
Remodel is still in early development, but much of its API is already fairly stable. Feedback is welcome!
9+
Remodel is still in early development, but much of its API is already stable. Feedback is welcome!
1010

1111
## Installation
1212

@@ -315,7 +315,7 @@ On Windows, Remodel will attempt to use the cookie from a logged in Roblox Studi
315315
To give a different auth cookie to Remodel, use the `--auth` argument:
316316

317317
```
318-
remodel foo.lua --auth "$MY_AUTH_COOKIE"
318+
remodel run foo.lua --auth "$MY_AUTH_COOKIE"
319319
```
320320

321321
You can also define the `REMODEL_AUTH` environment variable to avoid passing `--auth` as an argument.

0 commit comments

Comments
 (0)