CreateChangeFile
Create a change file interactively. Creates the .changeset
directory if missing.
Example
With a knope.toml
file that looks like this:
[packages.first]versioned_files = ["first/Cargo.toml"]changelog = "first/CHANGELOG.md"extra_changelog_sections = [ { name = "Poems 🎭", types = ["poem"] }]
[packages.second]versioned_files = ["second/Cargo.toml"]changelog = "second/CHANGELOG.md"
[[workflows]]name = "document-change"
[[workflows.steps]]type = "CreateChangeFile"
You could run knope document-change
to start a new change file.
First, Knope will prompt you to select the packages that this change affects.
For this example, we check off both packages.
- [x] first- [x] second
For each package, Knope will prompt you to select the type of change you are documenting.
The available change types are major
, minor
, patch
, and any of the custom types configured in extra_changelog_sections.types
.
For the first
package, this will look like:
Enter the type for the `first` package:
majorminorpatch> poem
For the second
package, we would not have the poem
option. Next, you will be prompted write a short summary of the change (a few words). The summary will be used both as the name of the file and a header in the changelog generated by PrepareRelease
.
If the summary is `[i carry your heart with me(i carry it in]`, this step will then generate a file .changeset/i_carry_your_heart_with_mei_carry_it_in.md
with the following contents:
---first: poemsecond: major---
#### `[i carry your heart with me(i carry it in]`
If that brief summary isn’t enough, you should then edit this file and add more detail below the generated heading, using all the Markdown features you want!
---first: poemsecond: major---
#### `[i carry your heart with me(i carry it in]`
**E. E. Cummings**
<pre>i carry your heart with me(i carry it inmy heart)i am never without it(anywherei go you go,my dear;and whatever is doneby only me is your doing,my darling) i fearno fate(for you are my fate,my sweet)i wantno world(for beautiful you are my world,my true)and it’s you are whatever a moon has always meantand whatever a sun will always sing is you
here is the deepest secret nobody knows(here is the root of the root and the bud of the budand the sky of the sky of a tree called life;which growshigher than soul can hope or mind can hide)and this is the wonder that's keeping the stars apart
i carry your heart(i carry it in my heart)</pre>
When you are done, you can run knope document-change
again to create another change file.
When you are ready to release, run PrepareRelease
to combine all the change files and conventional commits into a changelog and update the versions of any configured packages. The type of the change for each package will decide where it’s placed in the changelog: so first/CHANGELOG.md
will have a ### Poems 🎭
section and second/CHANGELOG.md
will have a ### Breaking Changes
section, each containing the summary and body of the change.
For completeness, this is what the changelog for first
would look like (if there had been no other changes):
### Poems 🎭
#### `[i carry your heart with me(i carry it in]`
**E. E. Cummings**
<pre>i carry your heart with me(i carry it inmy heart)i am never without it(anywherei go you go,my dear;and whatever is doneby only me is your doing,my darling) i fearno fate(for you are my fate,my sweet)i wantno world(for beautiful you are my world,my true)and it’s you are whatever a moon has always meantand whatever a sun will always sing is you
here is the deepest secret nobody knows(here is the root of the root and the bud of the budand the sky of the sky of a tree called life;which growshigher than soul can hope or mind can hide)and this is the wonder that's keeping the stars apart
i carry your heart(i carry it in my heart)</pre>