Skip to content

Commit

Permalink
release v0.6.0 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
chdsbd authored Feb 19, 2021
1 parent a7ea1f5 commit 3c35c26
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 12 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## v0.6.0 - 2021-02-19

### Added

- added "debug" option for `--dump-ast` to print out tree using Rust's `Debug` formatter (#92)
- added new rule, "adding-foreign-key-constraint", to provide suggestions for safely adding foreign key constraints (#91)

### Changed

- updated "robust-stmts" suggestions with caveat about `IF NOT EXISTS` (#95)
- updated "constraint-missing-not-valid" to warn about adding a constraint as NOT VALID and then using "VALIDATE CONSTRAINT" in the same transaction (#97)
- updated "prefer-robust-stmts" with exception for using `DROP CONSTRAINT IF EXISTS` before `ADD CONSTRAINT` (#99)

### Fixed

- error reporting is more user friendly (#89, #90)

## v0.5.4 - 2021-01-08

### 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.4"
version = "0.6.0"
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.4", path = "../parser" }
squawk-linter = { version = "0.5.4", path = "../linter" }
squawk-github = { version = "0.5.4", path = "../github" }
squawk-parser = { version = "0.6.0", path = "../parser" }
squawk-linter = { version = "0.6.0", path = "../linter" }
squawk-github = { version = "0.6.0", 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.4"
version = "0.6.0"
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.4"
version = "0.6.0"
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.4", path = "../parser" }
squawk-parser = { version = "0.6.0", 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.4"
version = "0.6.0"
authors = ["Steve Dignam <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
Expand Down

0 comments on commit 3c35c26

Please sign in to comment.