Skip to content

Commit

Permalink
release: v0.5.4 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbdchd authored Jan 8, 2021
1 parent 61b3bec commit 56c7c2b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## v0.5.4 - 2021-01-08

### Fixed

- parsing of RangeVar with missing inh field

## v0.5.3 - 2021-01-04

### Fixed
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.

8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "squawk"
version = "0.5.3"
version = "0.5.4"
authors = ["Steve Dignam <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
Expand All @@ -22,9 +22,9 @@ atty = "0.2"
base64 = "0.12.2"
simplelog = "0.8.0"
log = "0.4.8"
squawk-parser = { version = "0.5.3", path = "../parser" }
squawk-linter = { version = "0.5.3", path = "../linter" }
squawk-github = { version = "0.5.3", path = "../github" }
squawk-parser = { version = "0.5.4", path = "../parser" }
squawk-linter = { version = "0.5.4", path = "../linter" }
squawk-github = { version = "0.5.4", path = "../github" }

[dev-dependencies]
insta = "0.16.0"
2 changes: 1 addition & 1 deletion github/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "squawk-github"
version = "0.5.3"
version = "0.5.4"
authors = ["Steve Dignam <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
Expand Down
4 changes: 2 additions & 2 deletions linter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "squawk-linter"
version = "0.5.3"
version = "0.5.4"
authors = ["Steve Dignam <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
Expand All @@ -13,7 +13,7 @@ keywords = ["postgres", "sql", "linter"]

[dependencies]
serde = { version = "1.0", features = ["derive"] }
squawk-parser = { version = "0.5.3", path = "../parser" }
squawk-parser = { version = "0.5.4", path = "../parser" }
lazy_static = "1.4.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "squawk-parser"
version = "0.5.3"
version = "0.5.4"
authors = ["Steve Dignam <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
Expand Down

0 comments on commit 56c7c2b

Please sign in to comment.