From ff55188bf1720bcc4a6b7e2c4f97dd51db52d88d Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 25 Feb 2025 12:18:51 -0500 Subject: [PATCH] chore: prep for 1.4.0 release (#565) --- Cargo.lock | 2 +- Cargo.toml | 2 +- docs/release-notes.md | 7 +++++++ docs/usage.md | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 119b5563..757551a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3151,7 +3151,7 @@ dependencies = [ [[package]] name = "zizmor" -version = "1.3.1" +version = "1.4.0" dependencies = [ "annotate-snippets", "anstream", diff --git a/Cargo.toml b/Cargo.toml index 07202a7e..154357e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zizmor" description = "Static analysis for GitHub Actions" -version = "1.3.1" +version = "1.4.0" edition = "2021" repository = "https://github.com/woodruffw/zizmor" homepage = "https://github.com/woodruffw/zizmor" diff --git a/docs/release-notes.md b/docs/release-notes.md index c4d58189..b7c1db35 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -9,6 +9,13 @@ of `zizmor`. ## Next (UNRELEASED) +## v1.4.0 + +This release comes with one new audit ([unredacted-secrets]), plus a handful +of bugfixes and analysis improvements to existing audits. It also comes +with improvements to SARIF presentation, ignore comments, as well as an +[official Docker image](https://ghcr.io/woodruffw/zizmor)! + ### New Features 🌈 * `zizmor` now has official Docker images! You can find them on the diff --git a/docs/usage.md b/docs/usage.md index fb64c03b..3e87cda0 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -463,7 +463,7 @@ To do so, add the following to your `.pre-commit-config.yaml` `repos` section: ```yaml - repo: https://github.com/woodruffw/zizmor-pre-commit - rev: v1.3.1 # (1)! + rev: v1.4.0 # (1)! hooks: - id: zizmor ```