docs(changelog): promote the Unreleased entries under 0.2.0 - #14
Merged
Conversation
Minor, not patch: of the three downstream-visible commits since v0.1.1, one is a feat (the in_existing_repo answer, an additive new question with a false default) and two are fix(template). Existing downstreams that answer no keep their current layout, so nothing is breaking. copier update targets the latest SemVer tag, not HEAD, so the hooksPath skip and nested-repo support reach no downstream until v0.2.0 is tagged on this commit's merge.
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 thecore.hooksPathfix andin_existing_reposupport merged in PR #13 reach no downstream project until a tag exists. This cuts the release commit sov0.2.0can be tagged.Changes
[Unreleased]entries under## [0.2.0] - 2026-09-02and adds the compare-link references, per the Release section ofAGENTS.md.v0.1.1, one isfeat(template)(thein_existing_repoanswer: additive,falseby default, so existing downstreams keep their layout) and two arefix(template).CHANGELOG.mdonly.Testing
git log v0.1.1..main -- template/ copier.yml: 3 commits, all covered by the 3 promoted entries. The fourth commit in the range (fix(tests), the hook-install test rendering from HEAD) is maintainer-only and deliberately absent.Notes for reviewers
main:git tag -a v0.2.0 -m "v0.2.0" && git push origin v0.2.0, thengit describe --tagsto confirm a reachable tag exists.v0.1.1; the nested project in the dogfood repo cannotcopier updateto pick upin_existing_repobefore then.Related