Skip to content

Commit 8c116dd

Browse files
authored
release: 2.32.0 (#723)
1 parent daf5e37 commit 8c116dd

File tree

8 files changed

+37
-27
lines changed

8 files changed

+37
-27
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## v2.32.0 - 2025-12-04
11+
12+
## Fixed
13+
14+
- parser: fixed issue parsing some `insert`'s with `select`s and `conflict` clauses (#720, #721, #722).
15+
16+
## Added
17+
18+
- parser: special case functions like `extract` are now properly typed in the ast (#719).
19+
1020
## v2.31.0 - 2025-11-24
1121

1222
## Added

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "2.31.0"
6+
version = "2.32.0"
77
edition = "2024"
88
rust-version = "1.90.0"
99
authors = ["Squawk Team & Contributors"]
@@ -59,13 +59,13 @@ snapbox = { version = "0.6.0", features = ["diff", "term-svg", "cmd"] }
5959

6060
# local
6161
# we have to make the versions explicit otherwise `cargo publish` won't work
62-
squawk-github = { path = "./crates/squawk_github", version = "2.31.0" }
63-
squawk-ide = { path = "./crates/squawk_ide", version = "2.31.0" }
64-
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.31.0" }
65-
squawk-parser = { path = "./crates/squawk_parser", version = "2.31.0" }
66-
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.31.0" }
67-
squawk-linter = { path = "./crates/squawk_linter", version = "2.31.0" }
68-
squawk-server = { path = "./crates/squawk_server", version = "2.31.0" }
62+
squawk-github = { path = "./crates/squawk_github", version = "2.32.0" }
63+
squawk-ide = { path = "./crates/squawk_ide", version = "2.32.0" }
64+
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.32.0" }
65+
squawk-parser = { path = "./crates/squawk_parser", version = "2.32.0" }
66+
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.32.0" }
67+
squawk-linter = { path = "./crates/squawk_linter", version = "2.32.0" }
68+
squawk-server = { path = "./crates/squawk_server", version = "2.32.0" }
6969

7070
[workspace.lints.clippy]
7171
collapsible_else_if = "allow"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -330,17 +330,17 @@ cargo xtask new-rule 'prefer big serial'
330330
331331
### Releasing a New Version
332332
333-
1. Update the `CHANGELOG.md`
334-
335-
Include a description of any fixes / additions. Make sure to include the PR numbers and credit the authors.
336-
337-
2. Run `s/update-version`
333+
1. Run `s/update-version`
338334
339335
```bash
340336
# update version in squawk/Cargo.toml, package.json, flake.nix to 4.5.3
341337
s/update-version 4.5.3
342338
```
343339
340+
2. Update the `CHANGELOG.md`
341+
342+
Include a description of any fixes / additions. Make sure to include the PR numbers and credit the authors.
343+
344344
3. Create a new release on GitHub
345345
346346
Use the text and version from the `CHANGELOG.md`

crates/squawk_github/src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use serde_json::Value;
1111
use std::time::Duration;
1212
use std::time::{SystemTime, UNIX_EPOCH};
1313

14-
pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.31.0";
14+
pub(crate) const SQUAWK_USER_AGENT: &str = "squawk/2.32.0";
1515

1616
#[derive(Debug, Serialize)]
1717
struct CommentBody {

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
squawk = final.rustPlatform.buildRustPackage {
2020
pname = "squawk";
21-
version = "2.31.0";
21+
version = "2.32.0";
2222

2323
cargoLock = {
2424
lockFile = ./Cargo.lock;

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": "2.31.0",
3+
"version": "2.32.0",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "[email protected]:sbdchd/squawk.git",
66
"author": "Squawk Team & Contributors",

squawk-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"icon": "icon.png",
1010
"author": "Squawk Team & Contributors",
1111
"license": "(Apache-2.0 OR MIT)",
12-
"version": "2.31.0",
12+
"version": "2.32.0",
1313
"engines": {
1414
"vscode": "^1.101.0"
1515
},

0 commit comments

Comments
 (0)