diff --git a/rbx_reflection/CHANGELOG.md b/rbx_reflection/CHANGELOG.md index dcf6d3578..bf32ac241 100644 --- a/rbx_reflection/CHANGELOG.md +++ b/rbx_reflection/CHANGELOG.md @@ -2,7 +2,11 @@ ## Unreleased Changes +## 4.7.0 (2024-08-22) +* Update to rbx_types 1.10 + ## 4.6.0 (2024-07-23) +* Update to rbx_types 1.9 * Add `superclasses` method to `ReflectionDatabase` to get a set of superclasses for a given class. ([#402]) * Added method `ReflectionDatabase::find_default_property`, which finds the default value of a property given its name and a class that inherits it. ([#420]) diff --git a/rbx_reflection/Cargo.toml b/rbx_reflection/Cargo.toml index a0cce8204..2770848bc 100644 --- a/rbx_reflection/Cargo.toml +++ b/rbx_reflection/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rbx_reflection" description = "Roblox reflection database and ambiguous type resolution" -version = "4.6.0" +version = "4.7.0" license = "MIT" documentation = "https://docs.rs/rbx_reflection" homepage = "https://github.com/rojo-rbx/rbx-dom" @@ -11,7 +11,7 @@ authors = ["Lucien Greathouse "] edition = "2018" [dependencies] -rbx_types = { version = "1.9.0", path = "../rbx_types", features = ["serde"] } +rbx_types = { version = "1.10.0", path = "../rbx_types", features = ["serde"] } serde = { version = "1.0.137", features = ["derive"] } thiserror = "1.0.31"