nil}2018-10-30T00:00:00-08:00{"modified_time"=>nil}" />

Blog

On a Mission to Automate Revision
Andrew McKnight – 30 October 2018

I’ve written a few times now about how I’ve slowly automated versioning for apps, SDKs and devtools. Today I wrote a new Ruby tool to help a bit with the process: changetag, the newest component of my tworingtools Gem. Let’s see what I’ve been up to, how the process is changing, and what changetag does to help.

Keep a Changelog

One thing I’ve started since the last writing about version numbers is trying to build a habit of keeping an up-to-date changelog. And wouldn’t you know it, there’s a standard for it: keep a changelog.

From <a href='https://xkcd.com/927/'>https://xkcd.com/927/</a>
From https://xkcd.com/927/

Once nice thing about standards is that it allows ease of automation. Once I have a predictable format, I can start writing code that exploits the consistency to shuffle things around for me.

From <a href='https://xkcd.com/1319/'>https://xkcd.com/1319/</a>
From https://xkcd.com/1319/

Git a Grip

Vrsnr helps change the version numbers wherever they may reside, via a consistent interface at the command line. I have a Rake task to make the change and commit it to git, which I’ve been copying around for a while now (I know, that’s gross–I’m thinking about how to share it, or integrate it into Vrsnr). Then I have a separate Rake task to create a git tag and push to the necessary places (git remotes, dependency servers).

Put the Ease in Release

changetag extracts the relevant entry from your changelog and writes it into the message of a git tag annotation. This way your release notes are neatly encapsulated with the version number, all in the milestone mechanism provided by source control.

GitHub lists each tag you push under a “Releases” tab, and will include by default any message written into the tag’s annotation. You may also edit the release notes through the web UI or the GitHub API to make nicely formatted markdown notes. This is not yet done in changetag yet but is planned for the future. In the meantime, the notes are still listed there.


🙏🏻 Enjoy the post? Please help support more like it by buying me a cup of coffee!.

💡 Suggestions, questions, comments? Please submit a PR!.