docs(changelog): promote the Unreleased entries under 0.1.1 - #12
Merged
Conversation
Every downstream-visible commit since v0.1.0 is a fix: the eight commits touching template/ or copier.yml are all fix(template) or docs(template), with no feat among them. The two Changed entries remove dead generated config (the mccabe block, the gitleaks mise pin) and were themselves authored as fixes, so this is a SemVer patch rather than a minor. Cutting the tag matters beyond bookkeeping: copier update targets the latest SemVer tag, not HEAD, so none of these fixes reach a downstream project until a tag exists. main has been 75 commits past v0.1.0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
copier updatetargets the latest SemVer tag rather than HEAD, so none of the template fixes merged since June reach a downstream project until a tag exists — andmainis 76 commits pastv0.1.0. This cuts the release commit sov0.1.1can be tagged.Changes
[Unreleased]entries under## [0.1.1] - 2026-08-04and adds the compare-link references, per the Release section ofAGENTS.md.template/orcopier.ymlsincev0.1.0arefix(template)ordocs(template); there is nofeatamong them. The twoChangedentries remove dead generated config (the[tool.ruff.lint.mccabe]block, the gitleaksmisepin) and were themselves authored as fixes.CHANGELOG.mdonly.Testing
git log v0.1.0..HEAD -- template/ copier.yml— 8 commits, all covered by the 7 promoted entries (the shallow-checkout fix is folded into the gitleaks entry).Notes for reviewers
main:git tag -a v0.1.1 -m "v0.1.1" && git push origin v0.1.1, thengit describe --tagsto confirm a reachable tag exists.v0.1.0andjust deps-template-style HEAD renders remain the only way to see the current template.docs/superpowers/specs/2026-06-25-dependency-inventory-design.md(PR docs(specs): correct the renovate design after adversarial review #11).Related
AGENTS.md("Always tag each released commit before announcing it or letting any downstream consume the template").