diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b1a7e..778c546 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,23 @@ 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). +## `0.6.2` - March 25th, 2023 + +This release adds some new features and fixes for the `roblox` built-in. + +### Added + +- Added `GetAttribute`, `GetAttributes` and `SetAttribute` methods for instances +- Added support for getting & setting properties that are instance references + +### Changed + +- Improved handling of optional property types such as optional cframes & default physical properties + +### Fixed + +- Fixed handling of instance properties that are serialized as binary strings + ## `0.6.1` - March 22nd, 2023 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 3f46979..493b053 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -999,7 +999,7 @@ dependencies = [ [[package]] name = "lune" -version = "0.6.1" +version = "0.6.2" dependencies = [ "anyhow", "async-trait", @@ -1029,7 +1029,7 @@ dependencies = [ [[package]] name = "lune-cli" -version = "0.6.1" +version = "0.6.2" dependencies = [ "anyhow", "clap 4.1.8", @@ -1048,7 +1048,7 @@ dependencies = [ [[package]] name = "lune-roblox" -version = "0.6.1" +version = "0.6.2" dependencies = [ "anyhow", "glam", diff --git a/Cargo.toml b/Cargo.toml index c24b36a..72c03a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ default-members = ["packages/cli"] # Package config values shared across all packages, # such as version, license, and other metadata [workspace.package] -version = "0.6.1" +version = "0.6.2" edition = "2021" license = "MPL-2.0" repository = "https://github.com/filiptibell/lune"