From 7ce55676394f701615923181cfe31f8bf7f43cc0 Mon Sep 17 00:00:00 2001 From: David Dollar Date: Wed, 9 Oct 2019 08:25:03 -0400 Subject: [PATCH] update docs --- Changelog.md | 10 ++++++++++ man/foreman.1 | 2 +- tasks/release.rake | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 259b8b2b..39396bec 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,13 @@ +## 0.86.0 (2019-10-09) + +* bundle (but don't use) real thor to ensure we still get vulnerability notifications from github. [Micah Geisel] +* we don't need automatiek loaded to boot. [Micah Geisel] +* inline thor dependency. [Micah Geisel] +* CI: Use ruby 2.5.6, 2.6.4 in the matrix [Olle Jonsson] +* add wiki page with reason for not bundling to readme [David Dollar] +* CI: Use 2.4.6, 2.5.5, 2.6.3 [Olle Jonsson] +* update yard for GHSA-xfhh-rx56-rxcr [David Dollar] + ## 0.85.0 (2018-06-18) * updates rubies in travis - ensures only running with PID would be killed - updates dependencies; runs `codeclimate-test-reporter` after successful build - updates rubies for travis - squashes commits [LeFnord] diff --git a/man/foreman.1 b/man/foreman.1 index 61f7f11a..d8506aa8 100644 --- a/man/foreman.1 +++ b/man/foreman.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "FOREMAN" "1" "March 2017" "Foreman 0.85.0" "Foreman Manual" +.TH "FOREMAN" "1" "July 2019" "Foreman 0.86.0" "Foreman Manual" . .SH "NAME" \fBforeman\fR \- manage Procfile\-based applications diff --git a/tasks/release.rake b/tasks/release.rake index eef39b97..bc02c8c1 100644 --- a/tasks/release.rake +++ b/tasks/release.rake @@ -43,6 +43,7 @@ desc "Generate a Changelog" task :changelog do while release = newer_release entry = %x{ git show --format="%cd" #{release} | head -n 1 } + puts entry date = Time.parse(entry.chomp).strftime("%Y-%m-%d") message = "## #{release[1..-1]} (#{date})\n\n"