Skip to content

Commit

Permalink
Release 4.25.0 💎
Browse files Browse the repository at this point in the history
  • Loading branch information
iBug committed Apr 22, 2024
1 parent 4c38bab commit 6e94773
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 18 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## Unreleased
# Changelog

## [4.25.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.0)

### Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
]
Expand Down
4 changes: 2 additions & 2 deletions _includes/copyright.html
Original file line number Diff line number Diff line change
@@ -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
-->
4 changes: 2 additions & 2 deletions _includes/copyright.js
Original file line number Diff line number Diff line change
@@ -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
*/
4 changes: 2 additions & 2 deletions _sass/minimal-mistakes/_copyright.scss
Original file line number Diff line number Diff line change
@@ -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
*/
9 changes: 5 additions & 4 deletions assets/js/main.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion banner.js
Original file line number Diff line number Diff line change
@@ -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) != "/*!") {
Expand Down
6 changes: 4 additions & 2 deletions docs/_docs/18-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/_pages/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 6e94773

Please sign in to comment.