Skip to content

Commit 04611a8

Browse files
committed
release: v0.2.1 (release-infra retry of v0.2.0)
v0.2.0's release.yml failed at the attest-build-provenance step because the repo was private and the simtabi org isn't on a paid plan that includes attestation. PyPI never received an artifact. Repo is now public (matches the Simtabi OSS default) and release.yml has a workflow_dispatch trigger. Code is byte-identical to v0.2.0 otherwise.
1 parent 6ca7eca commit 04611a8

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,20 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
66

77
## [Unreleased]
88

9-
## [0.2.0] — 2026-05-14
9+
## [0.2.1] — 2026-05-14
10+
11+
### Fixed
12+
13+
- Release pipeline: `actions/attest-build-provenance` requires
14+
either a public repo or a paid org plan; the v0.2.0 build job
15+
failed at the attestation step so nothing reached PyPI. Repo
16+
flipped to `public` (matches the Simtabi OSS default) and
17+
`release.yml` gained a `workflow_dispatch` trigger for future
18+
retries without force-pushing tags. **Code at v0.2.1 is
19+
identical to v0.2.0; the bump is purely a release-infra
20+
retry.**
21+
22+
## [0.2.0] — 2026-05-14 (unpublished)
1023

1124
### Added
1225

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "shimkit"
7-
version = "0.2.0"
7+
version = "0.2.1"
88
description = "A toolkit of developer utilities — Java version manager, shell upgrader, and more. Python tools, shimmed by bash."
99
readme = "README.md"
1010
license = { file = "LICENSE" }

src/shimkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Python tools, shimmed by bash.
44
"""
55

6-
__version__ = "0.2.0"
6+
__version__ = "0.2.1"
77
__all__ = ["__version__"]

0 commit comments

Comments
 (0)