Release 4.25.0 💎

This commit is contained in:
iBug
2024-04-23 01:50:35 +08:00
parent 4c38bab95b
commit 6e94773083
11 changed files with 25 additions and 18 deletions

View File

@ -1,4 +1,6 @@
## Unreleased # Changelog
## [4.25.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.0)
### Bug Fixes ### Bug Fixes

View File

@ -121,7 +121,7 @@ To install:
bundle bundle
``` ```
4. Add `remote_theme: "mmistakes/minimal-mistakes@4.24.0"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry. 4. Add `remote_theme: "mmistakes/minimal-mistakes@4.25.0"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
<!-- <!--
Dev note: The version number is currently hard-coded in these files: Dev note: The version number is currently hard-coded in these files:

View File

@ -81,6 +81,7 @@ task :preview do
Jekyll::Commands::Serve.process(options) Jekyll::Commands::Serve.process(options)
end end
task :changelog => "docs/_docs/18-history.md"
file "docs/_docs/18-history.md" => "CHANGELOG.md" do |t| file "docs/_docs/18-history.md" => "CHANGELOG.md" do |t|
front_matter = { front_matter = {
title: "History", title: "History",
@ -108,7 +109,7 @@ end
COPYRIGHT_LINES = [ COPYRIGHT_LINES = [
"Minimal Mistakes Jekyll Theme #{package_json["version"]} by Michael Rose", "Minimal Mistakes Jekyll Theme #{package_json["version"]} by Michael Rose",
"Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes", "Copyright 2013-#{Time.now.year} Michael Rose - mademistakes.com | @mmistakes",
"Free for personal and commercial use under the MIT license", "Free for personal and commercial use under the MIT license",
"https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE", "https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE",
] ]

View File

@ -1,6 +1,6 @@
<!-- <!--
Minimal Mistakes Jekyll Theme 4.24.0 by Michael Rose Minimal Mistakes Jekyll Theme 4.25.0 by Michael Rose
Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
Free for personal and commercial use under the MIT license Free for personal and commercial use under the MIT license
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
--> -->

View File

@ -1,6 +1,6 @@
/*! /*!
* Minimal Mistakes Jekyll Theme 4.24.0 by Michael Rose * Minimal Mistakes Jekyll Theme 4.25.0 by Michael Rose
* Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes * Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
* Free for personal and commercial use under the MIT license * Free for personal and commercial use under the MIT license
* https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE * https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
*/ */

View File

@ -1,6 +1,6 @@
/*! /*!
* Minimal Mistakes Jekyll Theme 4.24.0 by Michael Rose * Minimal Mistakes Jekyll Theme 4.25.0 by Michael Rose
* Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes * Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
* Free for personal and commercial use under the MIT license * Free for personal and commercial use under the MIT license
* https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE * https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
*/ */

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,6 @@
const fs = require("fs"); const fs = require("fs");
const script = fs.readFileSync("assets/js/main.min.js"); const filename = "assets/js/main.min.js"
const script = fs.readFileSync(filename);
const banner = fs.readFileSync("_includes/copyright.js"); const banner = fs.readFileSync("_includes/copyright.js");
if (script.slice(0, 3) != "/*!") { if (script.slice(0, 3) != "/*!") {

View File

@ -5,13 +5,15 @@ permalink: "/docs/history/"
excerpt: Change log of enhancements and bug fixes made to the theme. excerpt: Change log of enhancements and bug fixes made to the theme.
sidebar: sidebar:
nav: docs nav: docs
last_modified_at: '2024-04-23T00:24:15+08:00' last_modified_at: '2024-04-23T01:30:41+08:00'
toc: false toc: false
--- ---
<!-- Sourced from CHANGELOG.md --> <!-- Sourced from CHANGELOG.md -->
{% raw %} {% raw %}
## Unreleased # Changelog
## [4.25.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.0)
### Bug Fixes ### Bug Fixes

View File

@ -10,7 +10,7 @@ header:
url: "/docs/quick-start-guide/" url: "/docs/quick-start-guide/"
excerpt: > excerpt: >
A flexible two-column Jekyll theme. Perfect for building personal sites, blogs, and portfolios.<br /> A flexible two-column Jekyll theme. Perfect for building personal sites, blogs, and portfolios.<br />
<small><a href="https://github.com/mmistakes/minimal-mistakes/releases/tag/4.24.0">Latest release v4.24.0</a></small> <small><a href="https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.0">Latest release v4.25.0</a></small>
feature_row: feature_row:
- image_path: /assets/images/mm-customizable-feature.png - image_path: /assets/images/mm-customizable-feature.png
alt: "customizable" alt: "customizable"

View File

@ -1,7 +1,7 @@
{ {
"name": "minimal-mistakes", "name": "minimal-mistakes",
"private": true, "private": true,
"version": "4.24.0", "version": "4.25.0",
"description": "Minimal Mistakes 2 column Jekyll theme.", "description": "Minimal Mistakes 2 column Jekyll theme.",
"repository": { "repository": {
"type": "git", "type": "git",