From ecf5369891cc364c42704ee4e971185af1641e39 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 14 Sep 2017 11:46:27 +0200 Subject: [PATCH 1/5] Prepare 1.10.1 release --- CHANGELOG | 4 ++++ docs/release-notes.md | 8 +++++++- material/base.html | 2 +- package.json | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7ea0bdcce..47400941e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +mkdocs-material-1.10.1 (2017-09-14) + + * Fixed #455: bold code blocks rendered with normal font weight + mkdocs-material-1.10.0 (2017-09-01) * Added support to make logo default icon configurable diff --git a/docs/release-notes.md b/docs/release-notes.md index 2b762e187..80e81e2db 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -12,11 +12,17 @@ To determine the currently installed version, use the following command: ``` sh pip show mkdocs-material | grep -E ^Version -# Version 1.10.0 +# Version 1.10.1 ``` ## Changelog +### 1.10.1 _ September 14, 2017 + +* Fixed [#455][455]: bold code blocks rendered with normal font weight + + [455]: https://github.com/squidfunk/mkdocs-material/issues/455 + ### 1.10.0 _ September 1, 2017 * Added support to make logo default icon configurable diff --git a/material/base.html b/material/base.html index f3b562083..14f246625 100644 --- a/material/base.html +++ b/material/base.html @@ -24,7 +24,7 @@ {% else %} {% endif %} - + {% endblock %} {% block htmltitle %} {% if page and page.meta.title %} diff --git a/package.json b/package.json index f1dcd777a..616e0f659 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "1.10.0", + "version": "1.10.1", "description": "A Material Design theme for MkDocs", "keywords": [ "mkdocs", From 94d0e888cf0dd4808edb18e8f0f38f24fc30f695 Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" Date: Tue, 12 Sep 2017 14:14:11 +0000 Subject: [PATCH 2/5] chore(package): update babel-eslint to version 8.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 616e0f659..d20952f2e 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "devDependencies": { "autoprefixer": "^7.1.2", "babel-core": "^6.25.0", - "babel-eslint": "^7.2.3", + "babel-eslint": "^8.0.0", "babel-loader": "^7.1.1", "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-root-import": "^5.1.0", From efd6efc85588d89dfde690ffd529aaf9c6272490 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 14 Sep 2017 12:00:51 +0200 Subject: [PATCH 3/5] Omit local installation on Travis, only build Docker image --- scripts/travis | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/travis b/scripts/travis index f7213886b..0d8792dd7 100755 --- a/scripts/travis +++ b/scripts/travis @@ -45,7 +45,6 @@ pip install wheel twine # Build and install theme and Docker image python setup.py build sdist bdist_wheel --universal -python setup.py install 2>/dev/null docker build -t $TRAVIS_REPO_SLUG . # Prepare build regression test From 3d617ba270780589beaabeda12904c58a32834e1 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 14 Sep 2017 12:19:45 +0200 Subject: [PATCH 4/5] Don't try to uninstall packages on Travis --- scripts/travis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/travis b/scripts/travis index 0d8792dd7..ac344ea19 100755 --- a/scripts/travis +++ b/scripts/travis @@ -41,7 +41,7 @@ fi echo "$TRAVIS_BRANCH" | grep -qvE "^[0-9.]+$" && exit 0; :; # Install dependencies for release build -pip install wheel twine +pip install --ignore-installed wheel twine # Build and install theme and Docker image python setup.py build sdist bdist_wheel --universal From d1376b89d7867d1adc08a5383c9b3d6b9c6f92fb Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 14 Sep 2017 12:24:50 +0200 Subject: [PATCH 5/5] Don't try to uninstall packages on Travis --- scripts/travis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/travis b/scripts/travis index ac344ea19..fd83e16bd 100755 --- a/scripts/travis +++ b/scripts/travis @@ -41,7 +41,7 @@ fi echo "$TRAVIS_BRANCH" | grep -qvE "^[0-9.]+$" && exit 0; :; # Install dependencies for release build -pip install --ignore-installed wheel twine +pip install --ignore-installed twine # Build and install theme and Docker image python setup.py build sdist bdist_wheel --universal