diff --git a/CHANGELOG.md b/CHANGELOG.md index 2599360..c01e9d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Fixed + +- Fixed issues with `UniqueId` when using the `roblox` builtin by downgrading `rbx-dom`. + ## `0.7.0` - June 12th, 2023 ### Breaking Changes diff --git a/packages/lib-roblox/Cargo.toml b/packages/lib-roblox/Cargo.toml index f4f4612..490a46a 100644 --- a/packages/lib-roblox/Cargo.toml +++ b/packages/lib-roblox/Cargo.toml @@ -22,11 +22,11 @@ glam = "0.24" rand = "0.8" thiserror = "1.0" -rbx_binary = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "f130d641ff28f64ebc931b179090d6de0851ebbe" } -rbx_dom_weak = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "f130d641ff28f64ebc931b179090d6de0851ebbe" } -rbx_reflection = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "f130d641ff28f64ebc931b179090d6de0851ebbe" } -rbx_reflection_database = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "f130d641ff28f64ebc931b179090d6de0851ebbe" } -rbx_xml = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "f130d641ff28f64ebc931b179090d6de0851ebbe" } +rbx_binary = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "45525315f6b241f14de3085bc6634f90c8684546" } +rbx_dom_weak = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "45525315f6b241f14de3085bc6634f90c8684546" } +rbx_reflection = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "45525315f6b241f14de3085bc6634f90c8684546" } +rbx_reflection_database = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "45525315f6b241f14de3085bc6634f90c8684546" } +rbx_xml = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "45525315f6b241f14de3085bc6634f90c8684546" } [dev-dependencies] anyhow = "1.0"