diff --git a/CHANGELOG.md b/CHANGELOG.md index 342d03d4..d8fbe541 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] +## v1.1.2 - 2024-06-26 + +### Fixed + +- fix install for darwin-x86 (#361) + ## v1.1.1 - 2024-06-16 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index f0b45be6..6e7db9f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1542,7 +1542,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "1.1.1" +version = "1.1.2" dependencies = [ "atty", "base64 0.12.3", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 35b451a7..3584dea1 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "1.1.1" +version = "1.1.2" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" diff --git a/flake.nix b/flake.nix index 49291c82..d65b7c97 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "1.1.1"; + version = "1.1.2"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index 4c9365d7..e84b3c19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "1.1.1", + "version": "1.1.2", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Steve Dignam ",