diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..98f3a68 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Tarmac Changelog + +## 0.2.0 (2020-01-21) +* Revamped configuration format. +* Added support for automatically packing spritesheets. +* Added support for nesting projects inside eachother via `include`. +* Added support for grabbing inputs by glob pattern. + +## 0.1.0 (2020-01-03) +* Initial release. \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 2846247..2039e26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1311,7 +1311,7 @@ dependencies = [ [[package]] name = "tarmac" -version = "0.2.0-dev" +version = "0.2.0" dependencies = [ "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 6320967..55601a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tarmac" description = "Manages assets for Roblox projects" -version = "0.2.0-dev" +version = "0.2.0" authors = ["Lucien Greathouse "] edition = "2018" license = "MIT"