diff --git a/CHANGELOG.md b/CHANGELOG.md index eaefc3fc1..3305d655e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased Changes +## [7.3.0-uplift.11] - 2023-05-25 + +* Updates rbx-dom to fix issues with UniqueId + ## [7.3.0-uplift.10] - 2023-04-22 * Adds MeshPart support diff --git a/Cargo.lock b/Cargo.lock index 8085abbb8..02656b373 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1652,8 +1652,8 @@ dependencies = [ [[package]] name = "rbx_binary" -version = "0.6.6" -source = "git+https://github.com/UpliftGames/rbx-dom?rev=9b0615dbc6352d9526fc2ee7924365be7031c13e#9b0615dbc6352d9526fc2ee7924365be7031c13e" +version = "0.7.0" +source = "git+https://github.com/UpliftGames/rbx-dom?rev=50e8bd040fc26e8271bbaefd05c59b2658392e80#50e8bd040fc26e8271bbaefd05c59b2658392e80" dependencies = [ "log", "lz4", @@ -1667,7 +1667,7 @@ dependencies = [ [[package]] name = "rbx_dom_weak" version = "2.4.0" -source = "git+https://github.com/UpliftGames/rbx-dom?rev=9b0615dbc6352d9526fc2ee7924365be7031c13e#9b0615dbc6352d9526fc2ee7924365be7031c13e" +source = "git+https://github.com/UpliftGames/rbx-dom?rev=50e8bd040fc26e8271bbaefd05c59b2658392e80#50e8bd040fc26e8271bbaefd05c59b2658392e80" dependencies = [ "rbx_types", "serde", @@ -1676,7 +1676,7 @@ dependencies = [ [[package]] name = "rbx_reflection" version = "4.2.0" -source = "git+https://github.com/UpliftGames/rbx-dom?rev=9b0615dbc6352d9526fc2ee7924365be7031c13e#9b0615dbc6352d9526fc2ee7924365be7031c13e" +source = "git+https://github.com/UpliftGames/rbx-dom?rev=50e8bd040fc26e8271bbaefd05c59b2658392e80#50e8bd040fc26e8271bbaefd05c59b2658392e80" dependencies = [ "rbx_types", "serde", @@ -1685,8 +1685,8 @@ dependencies = [ [[package]] name = "rbx_reflection_database" -version = "0.2.5+roblox-530" -source = "git+https://github.com/UpliftGames/rbx-dom?rev=9b0615dbc6352d9526fc2ee7924365be7031c13e#9b0615dbc6352d9526fc2ee7924365be7031c13e" +version = "0.2.6+roblox-572" +source = "git+https://github.com/UpliftGames/rbx-dom?rev=50e8bd040fc26e8271bbaefd05c59b2658392e80#50e8bd040fc26e8271bbaefd05c59b2658392e80" dependencies = [ "lazy_static", "rbx_reflection", @@ -1696,8 +1696,8 @@ dependencies = [ [[package]] name = "rbx_types" -version = "1.4.2" -source = "git+https://github.com/UpliftGames/rbx-dom?rev=9b0615dbc6352d9526fc2ee7924365be7031c13e#9b0615dbc6352d9526fc2ee7924365be7031c13e" +version = "1.5.0" +source = "git+https://github.com/UpliftGames/rbx-dom?rev=50e8bd040fc26e8271bbaefd05c59b2658392e80#50e8bd040fc26e8271bbaefd05c59b2658392e80" dependencies = [ "base64", "bitflags", @@ -1710,8 +1710,8 @@ dependencies = [ [[package]] name = "rbx_xml" -version = "0.12.4" -source = "git+https://github.com/UpliftGames/rbx-dom?rev=9b0615dbc6352d9526fc2ee7924365be7031c13e#9b0615dbc6352d9526fc2ee7924365be7031c13e" +version = "0.13.0" +source = "git+https://github.com/UpliftGames/rbx-dom?rev=50e8bd040fc26e8271bbaefd05c59b2658392e80#50e8bd040fc26e8271bbaefd05c59b2658392e80" dependencies = [ "base64", "log", @@ -1878,7 +1878,7 @@ dependencies = [ [[package]] name = "rojo" -version = "7.3.0-uplift.10" +version = "7.3.0-uplift.11" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 6d7c1e3c7..5e55244c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "7.3.0-uplift.10" +version = "7.3.0-uplift.11" rust-version = "1.58.1" authors = ["Lucien Greathouse "] description = "Enables professional-grade development tools for Roblox developers" @@ -51,11 +51,11 @@ memofs = { version = "0.2.0", path = "crates/memofs" } # rbx_reflection_database = { path = "../rbx-dom/rbx_reflection_database" } # rbx_xml = { path = "../rbx-dom/rbx_xml" } -rbx_binary = { git = "https://github.com/UpliftGames/rbx-dom", rev = "9b0615dbc6352d9526fc2ee7924365be7031c13e" } -rbx_dom_weak = { git = "https://github.com/UpliftGames/rbx-dom", rev = "9b0615dbc6352d9526fc2ee7924365be7031c13e" } -rbx_reflection = { git = "https://github.com/UpliftGames/rbx-dom", rev = "9b0615dbc6352d9526fc2ee7924365be7031c13e" } -rbx_reflection_database = { git = "https://github.com/UpliftGames/rbx-dom", rev = "9b0615dbc6352d9526fc2ee7924365be7031c13e" } -rbx_xml = { git = "https://github.com/UpliftGames/rbx-dom", rev = "9b0615dbc6352d9526fc2ee7924365be7031c13e" } +rbx_binary = { git = "https://github.com/UpliftGames/rbx-dom", rev = "50e8bd040fc26e8271bbaefd05c59b2658392e80" } +rbx_dom_weak = { git = "https://github.com/UpliftGames/rbx-dom", rev = "50e8bd040fc26e8271bbaefd05c59b2658392e80" } +rbx_reflection = { git = "https://github.com/UpliftGames/rbx-dom", rev = "50e8bd040fc26e8271bbaefd05c59b2658392e80" } +rbx_reflection_database = { git = "https://github.com/UpliftGames/rbx-dom", rev = "50e8bd040fc26e8271bbaefd05c59b2658392e80" } +rbx_xml = { git = "https://github.com/UpliftGames/rbx-dom", rev = "50e8bd040fc26e8271bbaefd05c59b2658392e80" } anyhow = "1.0.44" backtrace = "0.3.61" diff --git a/README.md b/README.md index 392438fd7..7a921bf4e 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Rojo can be installed with Aftman, a toolchain manager for Roblox projects: ```toml [tools] -rojo = "UpliftGames/rojo@7.3.0-uplift.10" +rojo = "UpliftGames/rojo@7.3.0-uplift.11" ``` ### From GitHub Releases diff --git a/plugin/wally.toml b/plugin/wally.toml index 5b3928af9..7246767a9 100644 --- a/plugin/wally.toml +++ b/plugin/wally.toml @@ -1,7 +1,7 @@ [package] name = "rojo-rbx/rojo" description = "Rojo enables Roblox developers to use professional-grade software engineering tools" -version = "7.3.0-uplift.10" +version = "7.3.0-uplift.11" license = "MPL-2.0" authors = ["LPGhatguy (https://lpg.space/)"] registry = "https://github.com/upliftgames/wally-index"