Skip to content

Commit 2240f8d

Browse files
authored
release: 0.8.0 (#162)
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
1 parent 24a9337 commit 2240f8d

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ cargo run
158158

159159
### releasing a new version
160160

161-
1. update the CHANGELOG.md and bump version in all the dependency
162-
`Cargo.toml` as well as the CLI `Cargo.toml` and commit the changes
161+
1. update the CHANGELOG.md and bump version in the cli `Cargo.toml`, ensure the
162+
lock file is updated, and update `package.json` and commit the changes
163163

164164
```bash
165165
# update version in Cargo.toml files and package.json to 4.5.3

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.7.3"
3+
version = "0.8.0"
44
authors = ["Steve Dignam <[email protected]>"]
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.7.0", path = "../parser" }
26-
squawk-linter = { version = "0.7.0", path = "../linter" }
27-
squawk-github = { version = "0.7.0", path = "../github" }
25+
squawk-parser = { version = "0.0.0", path = "../parser" }
26+
squawk-linter = { version = "0.0.0", path = "../linter" }
27+
squawk-github = { version = "0.0.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.7.3"
3+
version = "0.0.0"
44
authors = ["Steve Dignam <[email protected]>"]
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.7.3"
3+
version = "0.0.0"
44
authors = ["Steve Dignam <[email protected]>"]
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.7.0", path = "../parser" }
16+
squawk-parser = { version = "0.0.0", path = "../parser" }
1717
lazy_static = "1.4.0"
1818

1919
[dev-dependencies]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "squawk-cli",
3-
"version": "0.7.3",
3+
"version": "0.8.0",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "[email protected]:sbdchd/squawk.git",
66
"author": "Steve Dignam <[email protected]>",

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.7.3"
3+
version = "0.0.0"
44
authors = ["Steve Dignam <[email protected]>"]
55
edition = "2018"
66
license = "GPL-3.0"

0 commit comments

Comments
 (0)