From e826ae6e2b713690f4674dd4d04729f653e1aa8a Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Wed, 15 Jan 2020 19:18:15 +0530 Subject: [PATCH] Remove post-install message from gemspec (#7974) Merge pull request 7974 --- jekyll.gemspec | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/jekyll.gemspec b/jekyll.gemspec index 6ee6451e..9ca6e115 100644 --- a/jekyll.gemspec +++ b/jekyll.gemspec @@ -47,22 +47,4 @@ Gem::Specification.new do |s| s.add_runtime_dependency("rouge", "~> 3.0") s.add_runtime_dependency("safe_yaml", "~> 1.0") s.add_runtime_dependency("terminal-table", "~> 1.8") - - s.post_install_message = <<~MSG - ------------------------------------------------------------------------------------- - Jekyll 4.0 comes with some major changes, notably: - - * Our `link` tag now comes with the `relative_url` filter incorporated into it. - You should no longer prepend `{{ site.baseurl }}` to `{% link foo.md %}` - For further details: https://github.com/jekyll/jekyll/pull/6727 - - * Our `post_url` tag now comes with the `relative_url` filter incorporated into it. - You shouldn't prepend `{{ site.baseurl }}` to `{% post_url 2019-03-27-hello %}` - For further details: https://github.com/jekyll/jekyll/pull/7589 - - * Support for deprecated configuration options has been removed. We will no longer - output a warning and gracefully assign their values to the newer counterparts - internally. - ------------------------------------------------------------------------------------- - MSG end