Skip to content

Commit 9634feb

Browse files
committed
Merge branch 'release/4.3.1'
2 parents 6b8d314 + b6e14cb commit 9634feb

File tree

10 files changed

+21
-13
lines changed

10 files changed

+21
-13
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [4.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.1)
2+
3+
### Bug Fixes
4+
5+
- Correctly show Related Posts heading when UI Text data file is omitted and `related: true` in YAML Front Matter. [#901](https://github.com/mmistakes/minimal-mistakes/pull/901)
6+
17
## [4.3.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.0)
28

39
### Enhancements

_layouts/single.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ <h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4
6363
{% comment %}<!-- only show related on a post page when not disabled -->{% endcomment %}
6464
{% if page.id and page.related and site.related_posts.size > 0 %}
6565
<div class="page__related">
66-
{% if site.data.ui-text[site.locale].related_label %}
67-
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
68-
{% endif %}
66+
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
6967
<div class="grid__wrapper">
7068
{% for post in site.related_posts limit:4 %}
7169
{% include archive-single.html type="grid" %}

assets/css/main.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
---
33

44
/*!
5-
* Minimal Mistakes Jekyll Theme 4.3.0 by Michael Rose
5+
* Minimal Mistakes Jekyll Theme 4.3.1 by Michael Rose
66
* Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
77
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt)
88
*/

assets/js/main.min.js

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

docs/_docs/18-history.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ permalink: /docs/history/
44
excerpt: "Change log of enhancements and bug fixes made to the theme."
55
sidebar:
66
nav: docs
7-
modified: 2017-02-28T10:35:04-05:00
7+
modified: 2017-03-16T10:27:53-04:00
88
---
99

10+
## [4.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.1)
11+
12+
### Bug Fixes
13+
14+
- Correctly show Related Posts heading when UI Text data file is omitted and `related: true` in YAML Front Matter. [#901](https://github.com/mmistakes/minimal-mistakes/pull/901)
15+
1016
## [4.3.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.0)
1117

1218
### Enhancements

docs/_layouts/single.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ <h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4
6363
{% comment %}<!-- only show related on a post page when not disabled -->{% endcomment %}
6464
{% if page.id and page.related and site.related_posts.size > 0 %}
6565
<div class="page__related">
66-
{% if site.data.ui-text[site.locale].related_label %}
67-
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
68-
{% endif %}
66+
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
6967
<div class="grid__wrapper">
7068
{% for post in site.related_posts limit:4 %}
7169
{% include archive-single.html type="grid" %}

docs/assets/css/main.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
---
33

44
/*!
5-
* Minimal Mistakes Jekyll Theme 4.3.0 by Michael Rose
5+
* Minimal Mistakes Jekyll Theme 4.3.1 by Michael Rose
66
* Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
77
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt)
88
*/

docs/assets/js/main.min.js

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

minimal-mistakes-jekyll.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "minimal-mistakes-jekyll"
5-
spec.version = "4.3.0"
5+
spec.version = "4.3.1"
66
spec.authors = ["Michael Rose"]
77

88
spec.summary = %q{A flexible two-column Jekyll theme.}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "minimal-mistakes",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"description": "Minimal Mistakes Jekyll theme npm build scripts",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)