Skip to content

Commit 06b4986

Browse files
authored
release: v0.5.2 (#72)
rel: #70
1 parent 5f95301 commit 06b4986

File tree

7 files changed

+23
-17
lines changed

7 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## v0.5.2 - 2020-10-26
11+
12+
### Fixed
13+
14+
- parsing of create table with primary key constraint on two fields
15+
1016
## v0.5.1 - 2020-10-07
1117

1218
### Fixed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"
@@ -22,9 +22,9 @@ atty = "0.2"
2222
base64 = "0.12.2"
2323
simplelog = "0.8.0"
2424
log = "0.4.8"
25-
squawk-parser = { version = "0.5.1", path = "../parser" }
26-
squawk-linter = { version = "0.5.1", path = "../linter" }
27-
squawk-github = { version = "0.5.1", path = "../github" }
25+
squawk-parser = { version = "0.5.2", path = "../parser" }
26+
squawk-linter = { version = "0.5.2", path = "../linter" }
27+
squawk-github = { version = "0.5.2", path = "../github" }
2828

2929
[dev-dependencies]
3030
insta = "0.16.0"

github/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk-github"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"

linter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk-linter"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"
@@ -13,7 +13,7 @@ keywords = ["postgres", "sql", "linter"]
1313

1414
[dependencies]
1515
serde = { version = "1.0", features = ["derive"] }
16-
squawk-parser = { version = "0.5.1", path = "../parser" }
16+
squawk-parser = { version = "0.5.2", path = "../parser" }
1717
lazy_static = "1.4.0"
1818

1919
[dev-dependencies]

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk-parser"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"

0 commit comments

Comments
 (0)