From 5f49da9d56bb1cbe87306fac9505cf236f708e19 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Thu, 8 May 2025 19:22:42 -0400 Subject: [PATCH] release: 2.1.0 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- crates/cli/Cargo.toml | 2 +- flake.nix | 2 +- package.json | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e93917c..cd257c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.1.0 - 2025-05-08 + +### Added + +- `ban-truncate-cascade` rule (#453) + ## v2.0.0 - 2025-05-07 ### Added diff --git a/Cargo.lock b/Cargo.lock index 0ed99506..a06025a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2543,7 +2543,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "2.0.0" +version = "2.1.0" dependencies = [ "annotate-snippets", "anyhow", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 8c749b23..a41291b1 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "2.0.0" +version = "2.1.0" default-run = "squawk" authors.workspace = true diff --git a/flake.nix b/flake.nix index 63409812..6902e2d7 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.0.0"; + version = "2.1.0"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index 90ce0ef1..e6626ac0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.0.0", + "version": "2.1.0", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Steve Dignam ",