diff --git a/CHANGELOG.md b/CHANGELOG.md index 88448199..beca665b 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.7.2 - 2021-08-02 + +### Fixed + +- incorrect internal schema for "alter table" statements with function calls. Thanks @qoelet! (#154) + ## v0.7.1 - 2021-05-30 ### Fixed diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 82b0e252..8fca7aa2 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "0.7.1" +version = "0.7.2" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" diff --git a/docs/package.json b/docs/package.json index ae61ee31..5ca44d93 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "squawk", - "version": "0.7.1", + "version": "0.7.2", "private": true, "scripts": { "docusaurus": "docusaurus", diff --git a/github/Cargo.toml b/github/Cargo.toml index 06cf8b56..b1ff7eec 100644 --- a/github/Cargo.toml +++ b/github/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-github" -version = "0.7.1" +version = "0.7.2" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" diff --git a/linter/Cargo.toml b/linter/Cargo.toml index 2517f678..7be1cdef 100644 --- a/linter/Cargo.toml +++ b/linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-linter" -version = "0.7.1" +version = "0.7.2" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" diff --git a/package.json b/package.json index cb01f9bf..84353e5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "0.7.1", + "version": "0.7.2", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Steve Dignam ", diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 3868aa24..3bab2112 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-parser" -version = "0.7.1" +version = "0.7.2" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0"