Skip to content

Commit

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

## [Unreleased]

### v0.7.0 - 2021-05-19

### Added

- link to website for tty reporter when there are lint errors. (#120)
Expand All @@ -18,6 +20,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- updated "adding-not-null-field" to warn about making a column non-nullable with `NOT NULL`. See the ["adding-not-null-field" docs](https://squawkhq.com/docs/adding-not-nullable-field) for more information. (#101)

### Fixed

- false positive with `prefer-text-field` that wasn't allowing `varchar`
without a length specified

## v0.6.0 - 2021-02-19

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ cargo run
### releasing a new version

1. update the CHANGELOG.md and bump version in all the dependency
`Cargo.toml` as well as the CLI `Cargo.toml`
`Cargo.toml` as well as the CLI `Cargo.toml` and commit the changes
2. create a new release on github - CI will attach the binaries automatically
3. bump version in `package.json` and follow the `npm` steps

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

0 comments on commit aeda060

Please sign in to comment.