Skip to content

Commit

Permalink
release: 0.8.0 (#162)
Browse files Browse the repository at this point in the history
For some reason ran into rust-lang/rust#65721 and rust-lang/rust#49146 along with some other misc compiler errors and lints

Feels like every time I come back to this project the rust versions get out of wack
  • Loading branch information
sbdchd committed Oct 31, 2021
1 parent 24a9337 commit 2240f8d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
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.

4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "squawk"
version = "0.7.3"
version = "0.8.0"
authors = ["Steve Dignam <steve@dignam.xyz>"]
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.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"
2 changes: 1 addition & 1 deletion github/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "squawk-github"
version = "0.7.3"
version = "0.0.0"
authors = ["Steve Dignam <steve@dignam.xyz>"]
edition = "2018"
license = "GPL-3.0"
Expand Down
4 changes: 2 additions & 2 deletions linter/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "squawk-linter"
version = "0.7.3"
version = "0.0.0"
authors = ["Steve Dignam <steve@dignam.xyz>"]
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.7.0", path = "../parser" }
squawk-parser = { version = "0.0.0", path = "../parser" }
lazy_static = "1.4.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion 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 <steve@dignam.xyz>",
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "squawk-parser"
version = "0.7.3"
version = "0.0.0"
authors = ["Steve Dignam <steve@dignam.xyz>"]
edition = "2018"
license = "GPL-3.0"
Expand Down

0 comments on commit 2240f8d

Please sign in to comment.