diff --git a/CHANGELOG.md b/CHANGELOG.md index ba367e649..5b95a182e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +# v10.27.0 (Fri May 07 2021) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Spencer Hamm ([@spentacular](https://github.com/spentacular)), for all your work! + +#### 🚀 Enhancement + +- `@auto-it/sbt` + - add sbt plugin [#1962](https://github.com/intuit/auto/pull/1962) ([@laughedelic](https://github.com/laughedelic)) + +#### 🐛 Bug Fix + +- `@auto-it/git-tag` + - rearrange to allow dryrun to leverage prefixed tag [#1976](https://github.com/intuit/auto/pull/1976) (spencer_hamm@intuit.com) + +#### Authors: 2 + +- Alexey Alekhin ([@laughedelic](https://github.com/laughedelic)) +- Spencer Hamm ([@spentacular](https://github.com/spentacular)) + +--- + # v10.26.1 (Mon May 03 2021) #### 🐛 Bug Fix diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 1327f949f..cc0bb4471 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.26.1/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.27.0/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index 3a5bdab82..98730da0a 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,26 @@ +# v10.27.0 (Fri May 07 2021) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Spencer Hamm ([@spentacular](https://github.com/spentacular)), for all your work! + +#### 🚀 Enhancement + +- add sbt plugin [#1962](https://github.com/intuit/auto/pull/1962) ([@laughedelic](https://github.com/laughedelic)) + +#### 🐛 Bug Fix + +- rearrange to allow dryrun to leverage prefixed tag [#1976](https://github.com/intuit/auto/pull/1976) (spencer_hamm@intuit.com) +- remove useless double check for newTag (spencer_hamm@intuit.com) +- rearrange to allow dryrun to leverage prefixed tag (spencer_hamm@intuit.com) + +#### Authors: 2 + +- Alexey Alekhin ([@laughedelic](https://github.com/laughedelic)) +- Spencer Hamm ([@spentacular](https://github.com/spentacular)) + +--- + # v10.26.0 (Wed Apr 28 2021) #### 🚀 Enhancement diff --git a/plugins/sbt/CHANGELOG.md b/plugins/sbt/CHANGELOG.md new file mode 100644 index 000000000..9cc594ad8 --- /dev/null +++ b/plugins/sbt/CHANGELOG.md @@ -0,0 +1,45 @@ +# v10.26.0 (Fri May 07 2021) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Alexey Alekhin ([@laughedelic](https://github.com/laughedelic)), for all your work! + +#### 🚀 Enhancement + +- add sbt plugin [#1962](https://github.com/intuit/auto/pull/1962) ([@laughedelic](https://github.com/laughedelic)) + +#### 🐛 Bug Fix + +- add link to sbt's readme ([@laughedelic](https://github.com/laughedelic)) +- unused import ([@laughedelic](https://github.com/laughedelic)) +- moar tests! ([@laughedelic](https://github.com/laughedelic)) +- tests for sbtGetVersion ([@laughedelic](https://github.com/laughedelic)) +- first test for cleaning sbt client output ([@laughedelic](https://github.com/laughedelic)) +- pull sbt helpers out for testing ([@laughedelic](https://github.com/laughedelic)) +- rename manageVersion to setCanaryVersion ([@laughedelic](https://github.com/laughedelic)) +- always set version on release ([@laughedelic](https://github.com/laughedelic)) +- adjust sbtClient interface ([@laughedelic](https://github.com/laughedelic)) +- switch sbt-specific logs to verbose logger ([@laughedelic](https://github.com/laughedelic)) +- add publishCommand option ([@laughedelic](https://github.com/laughedelic)) +- downgrade strip-ansi ([@laughedelic](https://github.com/laughedelic)) +- trim version output ([@laughedelic](https://github.com/laughedelic)) +- don't aggregate version ([@laughedelic](https://github.com/laughedelic)) +- remove unused test ([@laughedelic](https://github.com/laughedelic)) +- note about sbt version ([@laughedelic](https://github.com/laughedelic)) +- linting ([@laughedelic](https://github.com/laughedelic)) +- docs ([@laughedelic](https://github.com/laughedelic)) +- add manageVersion config option ([@laughedelic](https://github.com/laughedelic)) +- clean output log ([@laughedelic](https://github.com/laughedelic)) +- cut off v prefix ([@laughedelic](https://github.com/laughedelic)) +- use strip-ansi ([@laughedelic](https://github.com/laughedelic)) +- add SNAPSHOT suffix to the canary version ([@laughedelic](https://github.com/laughedelic)) +- refactor ([@laughedelic](https://github.com/laughedelic)) +- add semver dependency ([@laughedelic](https://github.com/laughedelic)) +- blank lines ([@laughedelic](https://github.com/laughedelic)) +- add publish logs to the canary details ([@laughedelic](https://github.com/laughedelic)) +- add code from git-tag, implement publish/canary hooks ([@laughedelic](https://github.com/laughedelic)) +- generate sbt plugin ([@laughedelic](https://github.com/laughedelic)) + +#### Authors: 1 + +- Alexey Alekhin ([@laughedelic](https://github.com/laughedelic))