diff --git a/Cargo.lock b/Cargo.lock index e56e9199..5f942efe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1569,7 +1569,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "0.7.3" +version = "0.8.0" dependencies = [ "atty", "base64 0.12.3", @@ -1587,7 +1587,7 @@ dependencies = [ [[package]] name = "squawk-github" -version = "0.7.3" +version = "0.0.0" dependencies = [ "jsonwebtoken", "log", @@ -1598,7 +1598,7 @@ dependencies = [ [[package]] name = "squawk-linter" -version = "0.7.3" +version = "0.0.0" dependencies = [ "insta", "lazy_static", @@ -1608,7 +1608,7 @@ dependencies = [ [[package]] name = "squawk-parser" -version = "0.7.3" +version = "0.0.0" dependencies = [ "insta", "libpg_query-sys", diff --git a/README.md b/README.md index 15359740..83fc7abd 100644 --- a/README.md +++ b/README.md @@ -158,8 +158,8 @@ 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` and commit the changes +1. update the CHANGELOG.md and bump version in the cli `Cargo.toml`, ensure the + lock file is updated, and update `package.json` and commit the changes ```bash # update version in Cargo.toml files and package.json to 4.5.3 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8da09833..88d97031 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "0.7.3" +version = "0.8.0" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" @@ -22,9 +22,9 @@ atty = "0.2" base64 = "0.12.2" simplelog = "0.8.0" log = "0.4.8" -squawk-parser = { version = "0.7.0", path = "../parser" } -squawk-linter = { version = "0.7.0", path = "../linter" } -squawk-github = { version = "0.7.0", path = "../github" } +squawk-parser = { version = "0.0.0", path = "../parser" } +squawk-linter = { version = "0.0.0", path = "../linter" } +squawk-github = { version = "0.0.0", path = "../github" } [dev-dependencies] insta = "0.16.0" diff --git a/github/Cargo.toml b/github/Cargo.toml index 6a01ed03..354c9a5f 100644 --- a/github/Cargo.toml +++ b/github/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-github" -version = "0.7.3" +version = "0.0.0" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" diff --git a/linter/Cargo.toml b/linter/Cargo.toml index e674534e..12f49083 100644 --- a/linter/Cargo.toml +++ b/linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-linter" -version = "0.7.3" +version = "0.0.0" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" @@ -13,7 +13,7 @@ keywords = ["postgres", "sql", "linter"] [dependencies] serde = { version = "1.0", features = ["derive"] } -squawk-parser = { version = "0.7.0", path = "../parser" } +squawk-parser = { version = "0.0.0", path = "../parser" } lazy_static = "1.4.0" [dev-dependencies] diff --git a/package.json b/package.json index 2a0553c0..b7d8257b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "0.7.3", + "version": "0.8.0", "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 b8574e1b..fbb0f0c9 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk-parser" -version = "0.7.3" +version = "0.0.0" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0"