From 5c9a1ce7e06ef54225d5e867ca8eea2dd4958285 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Wed, 23 Jul 2025 20:02:10 -0400 Subject: [PATCH 1/2] release: 2.21.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 fd300ad6..846a4503 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2596,7 +2596,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "2.20.0" +version = "2.21.0" dependencies = [ "annotate-snippets", "anyhow", diff --git a/crates/squawk/Cargo.toml b/crates/squawk/Cargo.toml index ca285abc..37cdfe40 100644 --- a/crates/squawk/Cargo.toml +++ b/crates/squawk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "2.20.0" +version = "2.21.0" default-run = "squawk" authors.workspace = true diff --git a/flake.nix b/flake.nix index 0f24113b..d5444c8d 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.20.0"; + version = "2.21.0"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index 053eeb71..b1f5aa4f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.20.0", + "version": "2.21.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 ad48260b..b420d624 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.20.0", + "version": "2.21.0", "engines": { "vscode": "^1.101.0" }, From a4f9327e113d0ead2cd58f9517ad3ba95af43d15 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Wed, 23 Jul 2025 20:08:08 -0400 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23d6bb8b..9fc17bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.21.0 - 2025-07-23 + +## Added + +- parser: warn about `try_cast` and don't fail to parse casts that are invalid. (#593) + +## Fixed + +- vscode: invalid binary path on windows causing extension not to load. (#595) + ## v2.20.0 - 2025-07-12 ## Added