Skip to content

Commit

Permalink
Update full-moon version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kampfkarren committed Mar 12, 2023
1 parent 453da21 commit 6b15dd6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 39 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Changelog
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/Kampfkarren/selene/compare/0.24.0...HEAD)
## [Unreleased](https://github.com/Kampfkarren/selene/compare/0.25.0...HEAD)

## [0.25.0](https://github.com/Kampfkarren/selene/releases/tag/0.25.0) - 2023-03-12
### Added
- Added `CFrame.fromEulerAngles` to the Roblox standard library.
- Added `validate-config` command, which will report any errors in your configuration.
- Added `capabilities` command, which will report the feature set of the selene installation. This is useful for consumers like the VS Code extension.

### Changed
- Unknown keys in configuration files are accepted less often now.
- Updated internal parser, supporting Chinese characters better.

### Fixed
- "Legacy" Roblox enums (such as Enum.RaycastFilterType.Whitelist/Blacklist) are now automatically created and marked as deprecated in generated standard libraries.
Expand Down
41 changes: 8 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
members = ["selene", "selene-lib"]

[workspace.package]
version = "0.24.0"
version = "0.25.0"
authors = ["Kampfkarren <[email protected]>"]
edition = "2021"
homepage = "https://kampfkarren.github.io/selene/"
license = "MPL-2.0"
repository = "https://github.com/Kampfkarren/selene"

[workspace.dependencies]
full_moon = "0.17.0"
full_moon = "0.18.0"
toml = "0.7.2"

# Do not update this without confirming profiling uses the same version of tracy-client as selene
profiling = "1.0.7"
profiling = "1.0.7"
4 changes: 2 additions & 2 deletions selene/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ globset = "0.4.10"
lazy_static = "1.4"
num_cpus = "1.15"
profiling.workspace = true
selene-lib = { path = "../selene-lib", version = "=0.24.0", default-features = false }
selene-lib = { path = "../selene-lib", version = "=0.25.0", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.16"
Expand All @@ -42,4 +42,4 @@ pretty_assertions = "1.3"
[features]
default = ["roblox"]
tracy-profiling = ["profiling/profile-with-tracy", "tracy-client"]
roblox = ["selene-lib/roblox", "full_moon/roblox", "ureq"]
roblox = ["selene-lib/roblox", "full_moon/roblox", "ureq"]

0 comments on commit 6b15dd6

Please sign in to comment.