From ec315defb144d0a23845a0cdd4ccd977141c43b2 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Mon, 30 Jun 2025 23:49:40 -0400 Subject: [PATCH 1/2] release: 2.17.0 --- Cargo.lock | 2 +- crates/squawk/Cargo.toml | 2 +- flake.nix | 2 +- package.json | 2 +- s/update-version | 1 + squawk-vscode/package.json | 2 +- 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3e6de76e..1135e083 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2596,7 +2596,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "2.16.0" +version = "2.17.0" dependencies = [ "annotate-snippets", "anyhow", diff --git a/crates/squawk/Cargo.toml b/crates/squawk/Cargo.toml index 3991f4f6..1dd71e5c 100644 --- a/crates/squawk/Cargo.toml +++ b/crates/squawk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "2.16.0" +version = "2.17.0" default-run = "squawk" authors.workspace = true diff --git a/flake.nix b/flake.nix index 26db65e5..811e677e 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.16.0"; + version = "2.17.0"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index 8b73a219..a1937399 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.16.0", + "version": "2.17.0", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Squawk Team & Contributors", diff --git a/s/update-version b/s/update-version index 7c468aa4..82495667 100755 --- a/s/update-version +++ b/s/update-version @@ -9,6 +9,7 @@ function main { fastmod --accept-all '^version = ".*"' 'version = "'$NEW_VERSION'"' crates/squawk/Cargo.toml fastmod --accept-all -m '(name = "squawk"\n)version = ".*?"' '${1}version = "'$NEW_VERSION'"' Cargo.lock fastmod --accept-all '"version": ".*"' '"version": "'$NEW_VERSION'"' package.json + fastmod --accept-all '"version": ".*"' '"version": "'$NEW_VERSION'"' squawk-vscode/package.json fastmod --accept-all -m '(pname = "squawk";.*?)version = ".*?"' '${1}version = "'$NEW_VERSION'"' flake.nix } diff --git a/squawk-vscode/package.json b/squawk-vscode/package.json index 0a200219..fd3d1961 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": "0.0.2", + "version": "2.17.0", "engines": { "vscode": "^1.101.0" }, From a0cdd0cba194356401d9b37c3f818ec5fc0687ef Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Mon, 30 Jun 2025 23:52:19 -0400 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 525dca2f..5b092a61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.17.0 - 2025-06-30 + +## Added + +- Basic VSCode extension. (#567), (#569), (#571), (#572) + +- Improved `json_table` parsing. (#564) + ## v2.16.0 - 2025-06-27 ### Added