Skip to content
CCPEDIAby Unity Nodes
Discussions/App Development/What's the command to see the changelog that hasn't made it into the next minor release?Forum ↗

What's the command to see the changelog that hasn't made it into the next minor release?

App Development4 posts429 views8 likesLast activity Aug 2020
AN
anthonyOP
Aug 2020

Exactly what the title says. I believe there’s a pre-existing script for this? :slight_smile:

CO
cocreature
Aug 2020

There is an unreleased.sh script in the repository. It accepts a git range, so for example to see all changes since 1.4.0, you can use the following:

./unreleased.sh v1.4.0..
GA
Gary_Verhaegen
Aug 2020

Note that v1.4.0.. resolves to v1.4.0..HEAD, which may not be what you want if you’re working on stuff. Perhaps:

git fetch
./unreleased.sh v1.4.0..origin/master
GA
Gary_Verhaegen
Aug 2020

Also worth mentioning that this is an internal tool, not subject to any kind of external guarantees of future support or compatibility.

← Back to Discussions