diff options
author | Thom May <thom@chef.io> | 2017-05-26 09:21:38 -0500 |
---|---|---|
committer | Thom May <thom@chef.io> | 2017-05-26 09:21:38 -0500 |
commit | e38fd26826dfa53655ba19ef3807331c768e3ed7 (patch) | |
tree | 15159fc13d467083431510067d24add0ce55ca9d /tasks | |
parent | 8f7d2e4f4c4879885432fe05d65e00ba0f3865c1 (diff) | |
download | chef-e38fd26826dfa53655ba19ef3807331c768e3ed7.tar.gz |
Update RELEASE_NOTES for 13.1tm/13_1_relnotes
Signed-off-by: Thom May <thom@chef.io>
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/changelog.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tasks/changelog.rb b/tasks/changelog.rb index 1f969637c3..74ac704abf 100644 --- a/tasks/changelog.rb +++ b/tasks/changelog.rb @@ -5,7 +5,9 @@ begin namespace :changelog do # Fetch the latest version from mixlib-install def latest_stable_version - Mixlib::Install.available_versions("chef", "stable").last + # for 13.1, a 12.20 release was made after 13.0, which is busting the changelog generator. Reset this post 13.1 release + "13.0.118" + # Mixlib::Install.available_versions("chef", "stable").last end # Take the changelog from the latest stable release and put it into history. |