Skip to content

Commit

Permalink
Support binary literals, upgrade full-moon
Browse files Browse the repository at this point in the history
  • Loading branch information
Kampfkarren committed Nov 14, 2019
1 parent 6f65f43 commit 9db9ca7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Added
- A Roblox standard library can now be generated by simply having `std = "roblox"` in your configuration and running selene. If it does not exist, it will create one. This can also be initiated manually with `selene generate-roblox-std`.
- Added [`roblox_incorrect_color3_new_bounds`](https://kampfkarren.github.io/selene/lints/roblox_incorrect_color3_new_bounds.html).
- Added support for binary literals when using the `roblox` feature flag.

### Changed
- Changed incorrect_roact_usage to roblox_incorrect_roact_usage. [(#41)](https://github.com/Kampfkarren/selene/issues/41)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions selene-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
codespan = "0.4"
codespan-reporting = "0.4"
full_moon = "0.4.0-rc.11"
full_moon = "0.4.0-rc.12"
id-arena = "2.2"
if_chain = "1.0"
lazy_static = "1.4"
Expand All @@ -28,4 +28,4 @@ termcolor = "1.0"

[features]
default = ["roblox"]
roblox = ["rbx_reflection"]
roblox = ["rbx_reflection", "full_moon/roblox"]
4 changes: 2 additions & 2 deletions selene/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ edition = "2018"
atty = "0.2"
codespan = "0.4"
codespan-reporting = "0.4"
full_moon = "0.4.0-rc.11"
full_moon = "0.4.0-rc.12"
lazy_static = "1.4"
glob = "0.3"
num_cpus = "1.10"
Expand All @@ -28,4 +28,4 @@ toml = "0.5"

[features]
default = ["roblox"]
roblox = ["selene-lib/roblox", "reqwest", "serde"]
roblox = ["selene-lib/roblox", "full_moon/roblox", "reqwest", "serde"]

0 comments on commit 9db9ca7

Please sign in to comment.