From 56c7c2b098ce7340007cf3c0d630ad9e421fd85a Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Fri, 8 Jan 2021 15:01:49 -0500 Subject: [PATCH] release: v0.5.4 (#82) --- CHANGELOG.md | 6 ++++++ Cargo.lock | 8 ++++---- cli/Cargo.toml | 8 ++++---- github/Cargo.toml | 2 +- linter/Cargo.toml | 4 ++-- parser/Cargo.toml | 2 +- 6 files changed, 18 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91f4b756..b94c1b77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index fa8673cc..159003c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1569,7 +1569,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "0.5.3" +version = "0.5.4" dependencies = [ "atty", "base64 0.12.3", @@ -1587,7 +1587,7 @@ dependencies = [ [[package]] name = "squawk-github" -version = "0.5.3" +version = "0.5.4" dependencies = [ "jsonwebtoken", "log", @@ -1598,7 +1598,7 @@ dependencies = [ [[package]] name = "squawk-linter" -version = "0.5.3" +version = "0.5.4" dependencies = [ "insta", "lazy_static", @@ -1608,7 +1608,7 @@ dependencies = [ [[package]] name = "squawk-parser" -version = "0.5.3" +version = "0.5.4" dependencies = [ "insta", "libpg_query-sys", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bad6b5c9..175848f0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "0.5.3" +version = "0.5.4" authors = ["Steve Dignam "] 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.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" diff --git a/github/Cargo.toml b/github/Cargo.toml index 70e2b24c..b58616c3 100644 --- a/github/Cargo.toml +++ b/github/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-github" -version = "0.5.3" +version = "0.5.4" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" diff --git a/linter/Cargo.toml b/linter/Cargo.toml index ae1ea22a..b411edf2 100644 --- a/linter/Cargo.toml +++ b/linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-linter" -version = "0.5.3" +version = "0.5.4" authors = ["Steve Dignam "] 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.5.3", path = "../parser" } +squawk-parser = { version = "0.5.4", path = "../parser" } lazy_static = "1.4.0" [dev-dependencies] diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 8d7c3db3..7465eacd 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-parser" -version = "0.5.3" +version = "0.5.4" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0"