diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fde3139..9e493f47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### Bug Fixes +- Fix rake vulnerability in `.gemspec` file. - Fix Staticman v2 comment submission. [#2402](https://github.com/mmistakes/minimal-mistakes/pull/2402) - Fix repeated site base path for masthead logo. [#2385](https://github.com/mmistakes/minimal-mistakes/pull/2385) diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index b68cf93f..84c579c8 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -5,7 +5,7 @@ permalink: /docs/history/ excerpt: "Change log of enhancements and bug fixes made to the theme." sidebar: nav: docs -last_modified_at: 2020-02-17T15:30:05-05:00 +last_modified_at: 2020-03-02T16:25:42-05:00 toc: false --- @@ -18,6 +18,7 @@ toc: false ### Bug Fixes +- Fix rake vulnerability in `.gemspec` file. - Fix Staticman v2 comment submission. [#2402](https://github.com/mmistakes/minimal-mistakes/pull/2402) - Fix repeated site base path for masthead logo. [#2385](https://github.com/mmistakes/minimal-mistakes/pull/2385) diff --git a/minimal-mistakes-jekyll.gemspec b/minimal-mistakes-jekyll.gemspec index a55c1781..f69c2d09 100644 --- a/minimal-mistakes-jekyll.gemspec +++ b/minimal-mistakes-jekyll.gemspec @@ -23,5 +23,5 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency "jekyll-include-cache", "~> 0.1" spec.add_development_dependency "bundler" - spec.add_development_dependency "rake", "~> 10.0" + spec.add_development_dependency "rake", ">= 12.3.3" end