chore: prep 1.2.1 (#470)

This commit is contained in:
William Woodruff 2025-01-18 17:15:15 -05:00 committed by GitHub
parent 428e663046
commit 78cdaf6a69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 8 additions and 3 deletions

2
Cargo.lock generated
View file

@ -3108,7 +3108,7 @@ dependencies = [
[[package]]
name = "zizmor"
version = "1.2.0"
version = "1.2.1"
dependencies = [
"annotate-snippets",
"anstream",

View file

@ -1,7 +1,7 @@
[package]
name = "zizmor"
description = "Static analysis for GitHub Actions"
version = "1.2.0"
version = "1.2.1"
edition = "2021"
repository = "https://github.com/woodruffw/zizmor"
homepage = "https://github.com/woodruffw/zizmor"

View file

@ -11,6 +11,11 @@ of `zizmor`.
Nothing to see here (yet!)
## v1.2.1
This is a small corrective release for some SARIF behavior that
changed with v1.2.0.
### Bug Fixes 🐛
* SARIF outputs now use relative paths again, but more correctly

View file

@ -457,7 +457,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.2.0 # (1)!
rev: v1.2.1 # (1)!
hooks:
- id: zizmor
```