diff --git a/CHANGELOG.md b/CHANGELOG.md index d131394..4f12de9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased Changes +## 0.8.1 (2021-04-09) +* Updated to latest rbx_xml, which should fix `OptionalCoordinateFrame`-related issues. + ## 0.8.0 (2021-04-09) * Ported to rbx-dom v2, which includes full support for binary and XML model files. * Changed all upload commands to upload as binary instead of XML. diff --git a/Cargo.lock b/Cargo.lock index d96fb86..245e3cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1236,9 +1236,9 @@ dependencies = [ [[package]] name = "rbx_xml" -version = "0.12.0-alpha.3" +version = "0.12.0-alpha.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db7941a876c1b34ad4ec0a5b17632ed53bdb2436c5b5f8881c2880ffc3fe9e8b" +checksum = "86e2277d678ea30609e6f383a8f34eabab7bb2f9d62144cbe400d179acea2d47" dependencies = [ "base64 0.11.0", "log", @@ -1274,7 +1274,7 @@ dependencies = [ [[package]] name = "remodel" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 1cdd176..c2244e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "remodel" -version = "0.8.0" +version = "0.8.1" description = "A tool to read, modify, and write Roblox objects." authors = ["Lucien Greathouse "] edition = "2018" @@ -24,7 +24,7 @@ rbx_binary = "0.6.0-alpha.4" rbx_dom_weak = "2.0.0-alpha.1" rbx_reflection = "4.0.0-alpha.1" rbx_reflection_database = "0.1.0" -rbx_xml = "0.12.0-alpha.1" +rbx_xml = "0.12.0-alpha.4" anyhow = "1.0.27" backtrace = "0.3.45"