Skip to content

Commit aeda060

Browse files
authored
release: 0.7.0 (#139)
1 parent e3b8f78 commit aeda060

File tree

7 files changed

+20
-13
lines changed

7 files changed

+20
-13
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
### v0.7.0 - 2021-05-19
11+
1012
### Added
1113

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

1921
- 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)
2022

23+
### Fixed
24+
25+
- false positive with `prefer-text-field` that wasn't allowing `varchar`
26+
without a length specified
27+
2128
## v0.6.0 - 2021-02-19
2229

2330
### Added

Cargo.lock

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ cargo run
158158
### releasing a new version
159159

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

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.6.0"
3+
version = "0.7.0"
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.6.0", path = "../parser" }
26-
squawk-linter = { version = "0.6.0", path = "../linter" }
27-
squawk-github = { version = "0.6.0", path = "../github" }
25+
squawk-parser = { version = "0.7.0", path = "../parser" }
26+
squawk-linter = { version = "0.7.0", path = "../linter" }
27+
squawk-github = { version = "0.7.0", 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.6.0"
3+
version = "0.7.0"
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.6.0"
3+
version = "0.7.0"
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.6.0", path = "../parser" }
16+
squawk-parser = { version = "0.7.0", 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.6.0"
3+
version = "0.7.0"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"

0 commit comments

Comments
 (0)