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) 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) 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(),