diff --git a/CHANGELOG.md b/CHANGELOG.md index c46813c5..f11a1487 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [4.3.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.0) + +### Enhancements + +- Add workaround to allow theme gem's `/assets/js/main.min.js` file to be overridden by a local version. Simply add the following YAML Front Matter to the file: + + ``` + --- + layout: + --- + ``` + + Any local customizations you make to `/assets/js/main.min.js` should now replace the theme gem's version. + ## [4.2.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.2.2) ### Enhancements diff --git a/assets/css/main.scss b/assets/css/main.scss index 62edf776..c89e432d 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -2,7 +2,7 @@ --- /*! - * Minimal Mistakes Jekyll Theme 4.2.2 by Michael Rose + * Minimal Mistakes Jekyll Theme 4.3.0 by Michael Rose * Copyright 2017 Michael Rose - mademistakes.com | @mmistakes * Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt) */ diff --git a/assets/js/main.min.js b/assets/js/main.min.js index ae195b9e..07249d1e 100644 --- a/assets/js/main.min.js +++ b/assets/js/main.min.js @@ -3,7 +3,7 @@ layout: --- /*! - * Minimal Mistakes Jekyll Theme 4.2.2 by Michael Rose + * Minimal Mistakes Jekyll Theme 4.3.0 by Michael Rose * Copyright 2017 Michael Rose - mademistakes.com | @mmistakes * Licensed under MIT */ diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index 0676f66b..e5dfb7bc 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -4,9 +4,23 @@ permalink: /docs/history/ excerpt: "Change log of enhancements and bug fixes made to the theme." sidebar: nav: docs -modified: 2017-02-21T10:35:32-05:00 +modified: 2017-02-28T10:35:04-05:00 --- +## [4.3.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.0) + +### Enhancements + +- Add workaround to allow theme gem's `/assets/js/main.min.js` file to be overridden by a local version. Simply add the following YAML Front Matter to the file: + + ``` + --- + layout: + --- + ``` + + Any local customizations you make to `/assets/js/main.min.js` should now replace the theme gem's version. + ## [4.2.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.2.2) ### Enhancements diff --git a/docs/_pages/home.md b/docs/_pages/home.md index c65186cb..c9825db2 100644 --- a/docs/_pages/home.md +++ b/docs/_pages/home.md @@ -7,7 +7,7 @@ header: cta_label: " Install Now" cta_url: "/docs/quick-start-guide/" caption: -excerpt: 'A flexible two-column Jekyll theme. Perfect for personal sites, blogs, and portfolios hosted on GitHub or your own server.
Latest release v4.2.2

{::nomarkdown} {:/nomarkdown}' +excerpt: 'A flexible two-column Jekyll theme. Perfect for personal sites, blogs, and portfolios hosted on GitHub or your own server.
Latest release v4.3.0

{::nomarkdown} {:/nomarkdown}' feature_row: - image_path: /assets/images/mm-customizable-feature.png alt: "customizable" diff --git a/docs/assets/css/main.scss b/docs/assets/css/main.scss index 62edf776..c89e432d 100644 --- a/docs/assets/css/main.scss +++ b/docs/assets/css/main.scss @@ -2,7 +2,7 @@ --- /*! - * Minimal Mistakes Jekyll Theme 4.2.2 by Michael Rose + * Minimal Mistakes Jekyll Theme 4.3.0 by Michael Rose * Copyright 2017 Michael Rose - mademistakes.com | @mmistakes * Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt) */ diff --git a/docs/assets/js/main.min.js b/docs/assets/js/main.min.js index ae195b9e..07249d1e 100644 --- a/docs/assets/js/main.min.js +++ b/docs/assets/js/main.min.js @@ -3,7 +3,7 @@ layout: --- /*! - * Minimal Mistakes Jekyll Theme 4.2.2 by Michael Rose + * Minimal Mistakes Jekyll Theme 4.3.0 by Michael Rose * Copyright 2017 Michael Rose - mademistakes.com | @mmistakes * Licensed under MIT */ diff --git a/minimal-mistakes-jekyll.gemspec b/minimal-mistakes-jekyll.gemspec index 916f0700..e5755357 100644 --- a/minimal-mistakes-jekyll.gemspec +++ b/minimal-mistakes-jekyll.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "minimal-mistakes-jekyll" - spec.version = "4.2.2" + spec.version = "4.3.0" spec.authors = ["Michael Rose"] spec.summary = %q{A flexible two-column Jekyll theme.} diff --git a/package.json b/package.json index 3fc5c56c..2dfc6ba9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minimal-mistakes", - "version": "4.2.2", + "version": "4.3.0", "description": "Minimal Mistakes Jekyll theme npm build scripts", "repository": { "type": "git",