Add missing entry to changelog

This commit is contained in:
Filip Tibell 2024-06-23 13:40:13 +02:00
parent c7cbda98fe
commit 359f28133f
No known key found for this signature in database

View file

@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Added a builtin API for hashing and calculating HMACs as part of the `serde` library - Added a builtin API for hashing and calculating HMACs as part of the `serde` library ([#193])
Basic usage: Basic usage:
@ -36,6 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
By default, globals are injected and codegen is disabled. By default, globals are injected and codegen is disabled.
Check the documentation for the `luau` standard library for more information. Check the documentation for the `luau` standard library for more information.
- Implemented support for floor division operator / `__idiv` for the `Vector2` and `Vector3` types in the `roblox` standard library ([#196])
### Changed ### Changed
- Sandboxing and codegen in the Luau VM is now fully enabled, resulting in up to 2x or faster code execution. - Sandboxing and codegen in the Luau VM is now fully enabled, resulting in up to 2x or faster code execution.
@ -46,6 +48,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed `__type` and `__tostring` metamethods on userdatas and tables not being respected when printed or formatted using `stdio.format`. - Fixed `__type` and `__tostring` metamethods on userdatas and tables not being respected when printed or formatted using `stdio.format`.
[#193]: https://github.com/lune-org/lune/pull/193
[#196]: https://github.com/lune-org/lune/pull/196
## `0.8.5` - June 1st, 2024 ## `0.8.5` - June 1st, 2024
### Changed ### Changed