Skip to content

Commit 6e94773

Browse files
committed
Release 4.25.0 💎
1 parent 4c38bab commit 6e94773

File tree

11 files changed

+25
-18
lines changed

11 files changed

+25
-18
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## Unreleased
1+
# Changelog
2+
3+
## [4.25.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.0)
24

35
### Bug Fixes
46

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ To install:
121121
bundle
122122
```
123123

124-
4. Add `remote_theme: "mmistakes/minimal-mistakes@4.24.0"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
124+
4. Add `remote_theme: "mmistakes/minimal-mistakes@4.25.0"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
125125

126126
<!--
127127
Dev note: The version number is currently hard-coded in these files:

Rakefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ task :preview do
8181
Jekyll::Commands::Serve.process(options)
8282
end
8383

84+
task :changelog => "docs/_docs/18-history.md"
8485
file "docs/_docs/18-history.md" => "CHANGELOG.md" do |t|
8586
front_matter = {
8687
title: "History",
@@ -108,7 +109,7 @@ end
108109

109110
COPYRIGHT_LINES = [
110111
"Minimal Mistakes Jekyll Theme #{package_json["version"]} by Michael Rose",
111-
"Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes",
112+
"Copyright 2013-#{Time.now.year} Michael Rose - mademistakes.com | @mmistakes",
112113
"Free for personal and commercial use under the MIT license",
113114
"https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE",
114115
]

_includes/copyright.html

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

_includes/copyright.js

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

assets/js/main.min.js

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

banner.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const fs = require("fs");
2-
const script = fs.readFileSync("assets/js/main.min.js");
2+
const filename = "assets/js/main.min.js"
3+
const script = fs.readFileSync(filename);
34
const banner = fs.readFileSync("_includes/copyright.js");
45

56
if (script.slice(0, 3) != "/*!") {

docs/_docs/18-history.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ permalink: "/docs/history/"
55
excerpt: Change log of enhancements and bug fixes made to the theme.
66
sidebar:
77
nav: docs
8-
last_modified_at: '2024-04-23T00:24:15+08:00'
8+
last_modified_at: '2024-04-23T01:30:41+08:00'
99
toc: false
1010
---
1111

1212
<!-- Sourced from CHANGELOG.md -->
1313
{% raw %}
14-
## Unreleased
14+
# Changelog
15+
16+
## [4.25.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.0)
1517

1618
### Bug Fixes
1719

docs/_pages/home.md

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "minimal-mistakes",
33
"private": true,
4-
"version": "4.24.0",
4+
"version": "4.25.0",
55
"description": "Minimal Mistakes 2 column Jekyll theme.",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)