diff --git a/CHANGELOG.md b/CHANGELOG.md index fbc4af7fa..de76e7b35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,76 +1,5 @@ # Change Log -#### 10.0.0 (2019-05-01) - -[Full Changelog](https://github.com/acquia/blt/compare/10.0.0-rc4...10.0.0) - - -**Implemented enhancements** - -- Fixes #3527: Change settings file include order. (#3599) - -**Fixed bugs** - -- Fixes #3575 to update profile split docs and functions. (#3598) - -**Miscellaneous** - -- Fixed release script. -- Updating CHANGELOG.md and setting version for 10.0.0. -- Cleaned up update comments. (#3606) -- Update RELEASE.md -- Fix code block indent in docs creating-new-project (#3604) -- Speed up Composer operations in Travis. (#3603) -- Clean up frontend docs and FAQs for deployments. (#3602) -- Cleaned up settings files. (#3601) -- Minor cleanup before release. (#3600) -- Recommend installing zaporylie globally. (#3596) -- Revert "Prep stable release of blt-project." -- Prep stable release of blt-project. -[Full Changelog](https://github.com/acquia/blt/compare/test...10.0.0) - -**Major / breaking changes** - -- Remove support for PhantomJS. (#3580) - -**Implemented enhancements** - -- Fixes #3527: Change settings file include order. (#3599) -- Fixes #3417: Don't ignore platform reqs by default during deploys (#3590) - -**Fixed bugs** - -- Fixes #3575 to update profile split docs and functions. (#3598) -- Get rid of Vagrant warnings during update process. (#3597) -- Fixes #3574: Git tag needs author info, should stop deploy. (#3586) -- Removed remaining referenes to --yes. (#3594) -- Fixes #3583: Infinite recursion when using global.settings.default.php. (#3587) - -**Miscellaneous** - -- Cleaned up update comments. (#3606) -- Update RELEASE.md -- Fix code block indent in docs creating-new-project (#3604) -- Speed up Composer operations in Travis. (#3603) -- Clean up frontend docs and FAQs for deployments. (#3602) -- Cleaned up settings files. (#3601) -- Minor cleanup before release. (#3600) -- Recommend installing zaporylie globally. (#3596) -- Revert "Prep stable release of blt-project." -- Prep stable release of blt-project. -- Fixed release notes generation. -- Updating CHANGELOG.md and setting version for 10.0.0-rc4. -- Minor code style fix. -- Alphabetize blt-project dependencies. -- Update cloud hooks for previous 10.x users. (#3595) -- Prevent cache collisions in multisite install tasks #3171. (#3554) -- Remove / replace references to 9.x branch. (#3593) -- Add breaking changes to release notes. (#3589) -- Fixes #3558: Use --no-interaction when deploying tags on Travis. (#3588) -- Update example.local.blt.yml (#3585) -- Removed unused site-install parameter. (#3582) - - #### 10.0.0-rc4 (2019-04-26) [Full Changelog](https://github.com/acquia/blt/compare/test...10.0.0-rc4) diff --git a/RoboFile.php b/RoboFile.php index 9ddeff2f8..7eaf1f5b2 100644 --- a/RoboFile.php +++ b/RoboFile.php @@ -482,7 +482,7 @@ protected function updateChangelog($tag, $changes) { * An array of log changes. Typically each row would be a commit message. * * @return array - * A multidimensional array grouped by the labels enchancement and bug. + * A multidimensional array grouped by the labels enhancement and bug. */ protected function sortChanges($log_entries, $github_token) { $client = new Client(); @@ -518,18 +518,18 @@ protected function sortLogEntry($log_entry, $issue_api, $changes) { $labels = $this->getGitHubIssueLabels($issue_api, $github_issue_number); if ($labels) { foreach ($labels as $label) { - if (strtolower($label['name']) == 'enhancement') { - $changes['enhancements'][] = $log_entry; + if (strtolower($label['name']) == 'change record') { + $changes['breaking'][] = $log_entry; $sorted = TRUE; break; } - elseif (strtolower($label['name']) == 'bug') { - $changes['bugs'][] = $log_entry; + elseif (strtolower($label['name']) == 'enhancement') { + $changes['enhancements'][] = $log_entry; $sorted = TRUE; break; } - elseif (strtolower($label['name']) == 'change record') { - $changes['breaking'][] = $log_entry; + elseif (strtolower($label['name']) == 'bug') { + $changes['bugs'][] = $log_entry; $sorted = TRUE; break; }