From f958586d11cfcb2d79d97ab6692555ee003d2507 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 31 Jan 2020 13:22:22 -0800 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98f3a68..900d97c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Tarmac Changelog +## 0.3.0 (2020-01-31) +* Rewrote texture packing routine with a new library, [Packos](https://crates.io/crates/packos). + * This should fix textures overlapping eachother when running Tarmac with automatic spritesheets enabled. + ## 0.2.0 (2020-01-21) * Revamped configuration format. * Added support for automatically packing spritesheets. diff --git a/Cargo.lock b/Cargo.lock index 0bff3f2..927d6d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1346,7 +1346,7 @@ dependencies = [ [[package]] name = "tarmac" -version = "0.2.0" +version = "0.3.0" dependencies = [ "blake3 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index c8ad4c8..2cb9e3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tarmac" description = "Manages assets for Roblox projects" -version = "0.2.0" +version = "0.3.0" authors = ["Lucien Greathouse "] edition = "2018" license = "MIT" @@ -24,6 +24,8 @@ default-members = [ ] [dependencies] +packos = { path = "packos", version = "0.1.0" } + blake3 = "0.1.3" env_logger = "0.7.0" globset = "0.4.4" @@ -39,7 +41,5 @@ structopt = { version = "0.3", default-features = false } toml = "0.5.3" walkdir = "2.2.9" -packos = { path = "packos" } - [target.'cfg(windows)'.dependencies] winreg = "0.6.2"