From 475e37661a62fcf8e65f0ff2585b35493d8878ab Mon Sep 17 00:00:00 2001 From: Kishore Kumar Date: Sun, 8 Mar 2026 19:28:24 +0530 Subject: [PATCH] chore(release): bump v0.1.2 and pin codecov slug --- .github/workflows/ci.yml | 1 + .github/workflows/release.yml | 1 + CHANGELOG.md | 7 +++++++ VERSION | 2 +- build.zig.zon | 2 +- 5 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc4ca12..b9d54e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,6 +49,7 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v5 with: + slug: usezombie/posthog-zig files: coverage/cobertura.xml flags: posthog-zig fail_ci_if_error: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d1a8405..49c425c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -102,6 +102,7 @@ jobs: - name: Upload to Codecov uses: codecov/codecov-action@v5 with: + slug: usezombie/posthog-zig files: coverage/cobertura.xml flags: posthog-zig fail_ci_if_error: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c93608..5ce333f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## [Unreleased] +## [0.1.2] - 2026-03-08 + +### Fixed + +- Codecov upload routing is now explicit via workflow `slug` values to prevent cross-repo attribution + ## [0.1.1] - 2026-03-08 ### Changed @@ -71,3 +77,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). [0.1.0]: https://github.com/usezombie/posthog-zig/releases/tag/v0.1.0 [0.1.1]: https://github.com/usezombie/posthog-zig/releases/tag/v0.1.1 +[0.1.2]: https://github.com/usezombie/posthog-zig/releases/tag/v0.1.2 diff --git a/VERSION b/VERSION index 17e51c3..d917d3e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.1 +0.1.2 diff --git a/build.zig.zon b/build.zig.zon index aa993c9..7d1c902 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .posthog, - .version = "0.1.1", + .version = "0.1.2", .fingerprint = 0xa5fe060596d90b43, .minimum_zig_version = "0.15.0", .dependencies = .{},