From 2a5db1b33d2d087406d955b419ad489e67776039 Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Thu, 25 Mar 2021 11:51:23 -0800 Subject: [PATCH 1/3] Build package needs an id --- .github/workflows/tag-and-distribute.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tag-and-distribute.yml b/.github/workflows/tag-and-distribute.yml index 2a5ca22..d69eb96 100644 --- a/.github/workflows/tag-and-distribute.yml +++ b/.github/workflows/tag-and-distribute.yml @@ -74,6 +74,7 @@ jobs: echo "Tagged version $(git describe --abbrev=0) and pushed back to repo" - name: Build package + id: build run: | git fetch origin +refs/tags/*:refs/tags/* export SDIST_VERSION=$(python setup.py --version) From 6c260035b17be24b6018b0eb727b03997c1aa47c Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Thu, 17 Mar 2022 10:50:03 -0800 Subject: [PATCH 2/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ba05e1e..1f76b24 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ install_requires=[ 'mkdocs', - 'mkdocs-material>=6.0,<7.0', + 'mkdocs-material>=6.2.1,<7.0', ], packages=find_packages(), From 37420d721f6c2a68bfaa9ed5e864864fa6ad19bb Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Thu, 17 Mar 2022 13:02:13 -0800 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0e339d..d99d21e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/) and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.2.4](https://github.com/ASFHyP3/mkdocs-asf-theme/compare/v0.2.3...v0.2.4) + +### Fixed +- MkDocs Material theme 6.2.0 breaks site generation, so the dependency is now pinned to `mkdocs-material>=6.2.1,<7.0` + ## [0.2.3](https://github.com/ASFHyP3/mkdocs-asf-theme/compare/v0.2.2...v0.2.3) ### Fixed -- ASF logo and background map now appear correctly in "Project" or repo level sites. +- ASF logo and background map now appear correctly in "Project" or repo level sites ## [0.2.2](https://github.com/ASFHyP3/mkdocs-asf-theme/compare/v0.2.1...v0.2.2)