-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For some reason ran into rust-lang/rust#65721 and rust-lang/rust#49146 along with some other misc compiler errors and lints Feels like every time I come back to this project the rust versions get out of wack
- Loading branch information
Showing
7 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
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
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 = "squawk" | ||
version = "0.7.3" | ||
version = "0.8.0" | ||
authors = ["Steve Dignam <[email protected]>"] | ||
edition = "2018" | ||
license = "GPL-3.0" | ||
|
@@ -22,9 +22,9 @@ atty = "0.2" | |
base64 = "0.12.2" | ||
simplelog = "0.8.0" | ||
log = "0.4.8" | ||
squawk-parser = { version = "0.7.0", path = "../parser" } | ||
squawk-linter = { version = "0.7.0", path = "../linter" } | ||
squawk-github = { version = "0.7.0", path = "../github" } | ||
squawk-parser = { version = "0.0.0", path = "../parser" } | ||
squawk-linter = { version = "0.0.0", path = "../linter" } | ||
squawk-github = { version = "0.0.0", path = "../github" } | ||
|
||
[dev-dependencies] | ||
insta = "0.16.0" |
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 = "squawk-github" | ||
version = "0.7.3" | ||
version = "0.0.0" | ||
authors = ["Steve Dignam <[email protected]>"] | ||
edition = "2018" | ||
license = "GPL-3.0" | ||
|
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 = "squawk-linter" | ||
version = "0.7.3" | ||
version = "0.0.0" | ||
authors = ["Steve Dignam <[email protected]>"] | ||
edition = "2018" | ||
license = "GPL-3.0" | ||
|
@@ -13,7 +13,7 @@ keywords = ["postgres", "sql", "linter"] | |
|
||
[dependencies] | ||
serde = { version = "1.0", features = ["derive"] } | ||
squawk-parser = { version = "0.7.0", path = "../parser" } | ||
squawk-parser = { version = "0.0.0", path = "../parser" } | ||
lazy_static = "1.4.0" | ||
|
||
[dev-dependencies] | ||
|
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 @@ | ||
{ | ||
"name": "squawk-cli", | ||
"version": "0.7.3", | ||
"version": "0.8.0", | ||
"description": "linter for PostgreSQL, focused on migrations", | ||
"repository": "[email protected]:sbdchd/squawk.git", | ||
"author": "Steve Dignam <[email protected]>", | ||
|
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 = "squawk-parser" | ||
version = "0.7.3" | ||
version = "0.0.0" | ||
authors = ["Steve Dignam <[email protected]>"] | ||
edition = "2018" | ||
license = "GPL-3.0" | ||
|