-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run tests on CI + Fix regressions (#194)
* Run tests on CI * Fix CI...passing * Use new version of full-moon, bump version * Use fields()
- Loading branch information
1 parent
177a060
commit a42a75d
Showing
8 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "selene-lib" | ||
version = "0.10.0" | ||
version = "0.10.1" | ||
license = "MPL-2.0" | ||
authors = ["Kampfkarren <[email protected]>"] | ||
description = "A library for linting Lua code. You probably want selene instead." | ||
|
@@ -12,7 +12,7 @@ edition = "2018" | |
[dependencies] | ||
codespan = "0.9" | ||
codespan-reporting = "0.9" | ||
full_moon = "0.8" | ||
full_moon = "0.9" | ||
id-arena = "2.2" | ||
if_chain = "1.0" | ||
lazy_static = "1.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "selene" | ||
version = "0.10.0" | ||
version = "0.10.1" | ||
license = "MPL-2.0" | ||
authors = ["Kampfkarren <[email protected]>"] | ||
description = "A blazing-fast modern Lua linter written in Rust" | ||
|
@@ -16,12 +16,12 @@ cfg-if = "0.1" | |
chrono = "0.4" | ||
codespan = { version = "0.9", features = ["serialization"] } | ||
codespan-reporting = { version = "0.9", features = ["serialization"] } | ||
full_moon = "0.8" | ||
full_moon = "0.9" | ||
lazy_static = "1.4" | ||
glob = "0.3" | ||
num_cpus = "1.10" | ||
reqwest = { version = "0.9", optional = true } | ||
selene-lib = { path = "../selene-lib", version = "=0.10.0", default-features = false } | ||
selene-lib = { path = "../selene-lib", version = "=0.10.1", default-features = false } | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
structopt = "0.3" | ||
|