Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.8.0 #162

Merged
merged 1 commit into from
Oct 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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" }
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

stole this idea from rust-analyzer

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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