From ff9088a5737acdc3fcbc4a74c8c767c3959aa57f Mon Sep 17 00:00:00 2001 From: Christopher Dignam Date: Sat, 11 Jan 2025 10:15:24 -0500 Subject: [PATCH 1/2] use ubuntu 22 --- .github/workflows/rust.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 187c3ea5..5e56b5de 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,7 +10,7 @@ on: jobs: pre_job: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} paths_result: ${{ steps.skip_check.outputs.paths_result }} @@ -25,7 +25,7 @@ jobs: if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/') name: Linux x86_64 - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout @@ -65,7 +65,7 @@ jobs: if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/') name: Linux arm64 - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout @@ -194,7 +194,7 @@ jobs: publish-npm: if: startsWith(github.ref, 'refs/tags/') needs: [build-linux-x64, build-mac, build-windows] - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 @@ -209,7 +209,7 @@ jobs: needs: pre_job if: needs.pre_job.outputs.should_skip != 'true' - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout @@ -237,7 +237,7 @@ jobs: needs: pre_job if: needs.pre_job.outputs.should_skip != 'true' - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout @@ -253,7 +253,7 @@ jobs: run: ./s/test check_version: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout From aa715820b43da3120ebe82262d1ea700fa4a7aad Mon Sep 17 00:00:00 2001 From: Christopher Dignam Date: Sat, 11 Jan 2025 12:26:06 -0500 Subject: [PATCH 2/2] bump version --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- 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 8c56d83c..7b83249b 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.5.2 - 2025-01-11 + +### Fixed + +- Fixed accidental glibc upgrade (#401). + ## v1.5.1 - 2025-01-10 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index d431ed54..68561adc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1586,7 +1586,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "1.5.1" +version = "1.5.2" dependencies = [ "atty", "base64 0.12.3", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0a7d2e08..a703c324 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "1.5.1" +version = "1.5.2" authors = ["Steve Dignam "] edition = "2018" license = "GPL-3.0" diff --git a/flake.nix b/flake.nix index cd85893b..32e76dff 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "1.5.1"; + version = "1.5.2"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index fd6a6386..a6d9f98a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "1.5.1", + "version": "1.5.2", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Steve Dignam ",