From 6227dddb282b5559be0d5edf4272e098af6a1ce3 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Thu, 7 Aug 2025 21:02:03 -0400 Subject: [PATCH 1/2] release: 2.22.0 --- Cargo.lock | 2 +- crates/squawk/Cargo.toml | 2 +- flake.nix | 2 +- package.json | 2 +- squawk-vscode/package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7674fc12..9f86fef9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2596,7 +2596,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "2.21.1" +version = "2.22.0" dependencies = [ "annotate-snippets", "anyhow", diff --git a/crates/squawk/Cargo.toml b/crates/squawk/Cargo.toml index 14af8aab..d6c7edb9 100644 --- a/crates/squawk/Cargo.toml +++ b/crates/squawk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "2.21.1" +version = "2.22.0" default-run = "squawk" authors.workspace = true diff --git a/flake.nix b/flake.nix index bd9fa992..00e6077c 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.21.1"; + version = "2.22.0"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index e965fbb7..01fedc88 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.21.1", + "version": "2.22.0", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Squawk Team & Contributors", diff --git a/squawk-vscode/package.json b/squawk-vscode/package.json index 2b79b484..7156b955 100644 --- a/squawk-vscode/package.json +++ b/squawk-vscode/package.json @@ -9,7 +9,7 @@ "icon": "icon.png", "author": "Squawk Team & Contributors", "license": "(Apache-2.0 OR MIT)", - "version": "2.21.1", + "version": "2.22.0", "engines": { "vscode": "^1.101.0" }, From 29807bee917f1224ccfead72e12ba43c1406d449 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Thu, 7 Aug 2025 21:22:02 -0400 Subject: [PATCH 2/2] change log --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3733bc4..c86364f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.22.0 - 2025-08-07 + +## Added + +- linter: add fixes for prefer-robust-stmts (currently LSP server only) (#602) + +- playground: add quick fix support (#606) + +## Fixed + +- linter: fix comparison edge cases with identifiers (#600), (#601). Thanks @gilbsgilbs! + ## v2.21.1 - 2025-07-23 ## Fixed