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

View File

@ -121,7 +121,7 @@ To install:
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:

View File

@ -81,6 +81,7 @@ task :preview do
Jekyll::Commands::Serve.process(options)
end
task :changelog => "docs/_docs/18-history.md"
file "docs/_docs/18-history.md" => "CHANGELOG.md" do |t|
front_matter = {
title: "History",
@ -108,7 +109,7 @@ end
COPYRIGHT_LINES = [
"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",
"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
Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
Minimal Mistakes Jekyll Theme 4.25.0 by Michael Rose
Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
Free for personal and commercial use under the MIT 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
* Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
* Minimal Mistakes Jekyll Theme 4.25.0 by Michael Rose
* Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
* Free for personal and commercial use under the MIT 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
* Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
* Minimal Mistakes Jekyll Theme 4.25.0 by Michael Rose
* Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
* Free for personal and commercial use under the MIT 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 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");
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.
sidebar:
nav: docs
last_modified_at: '2024-04-23T00:24:15+08:00'
last_modified_at: '2024-04-23T01:30:41+08:00'
toc: false
---
<!-- Sourced from CHANGELOG.md -->
{% raw %}
## Unreleased
# Changelog
## [4.25.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.0)
### Bug Fixes

View File

@ -10,7 +10,7 @@ header:
url: "/docs/quick-start-guide/"
excerpt: >
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:
- image_path: /assets/images/mm-customizable-feature.png
alt: "customizable"

View File

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