Skip to content

Commit 1b34938

Browse files
authored
Merge pull request #419 from fitzgen/bump-to-version-0.13.1
Bump to version 0.13.1 and fix release build CI
2 parents 8db9096 + 5071798 commit 1b34938

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
echo "name=$ARCHIVE_NAME.zip" >> $GITHUB_OUTPUT
4242
4343
- name: Upload artifacts
44-
uses: actions/upload-artifact@v2
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: ${{ steps.package.outputs.name }}
4747
path: ${{ steps.package.outputs.file }}
@@ -97,7 +97,7 @@ jobs:
9797
echo "file=$TAR_FILE.tar.gz" >> $GITHUB_OUTPUT
9898
9999
- name: Upload artifacts
100-
uses: actions/upload-artifact@v2
100+
uses: actions/upload-artifact@v4
101101
with:
102102
name: ${{ steps.package.outputs.name }}
103103
path: ${{ steps.package.outputs.file }}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,20 @@ Released YYYY-MM-DD.
2828

2929
--------------------------------------------------------------------------------
3030

31+
## 0.13.1
32+
33+
Released 2025-06-26.
34+
35+
### Fixed
36+
37+
* Fixed a bug in debug info configuration where we accidentally used a `rustc`
38+
flag that affected not only the debug info level, but also whether split debug
39+
info was enabled and whether debug info stripping was enabled. Now we
40+
correctly configure precisely and only the debug info level and not any other
41+
debug info related settings.
42+
43+
--------------------------------------------------------------------------------
44+
3145
## 0.13.0
3246

3347
Released 2025-06-25.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["."]
33

44
[package]
55
name = "cargo-fuzz"
6-
version = "0.13.0"
6+
version = "0.13.1"
77
authors = ["The rust-fuzz Project Developers"]
88
license = "MIT OR Apache-2.0"
99
description = "A `cargo` subcommand for fuzzing with `libFuzzer`! Easy to use!"

0 commit comments

Comments
 (0)