diff --git a/CHANGELOG.md b/CHANGELOG.md index 5221f76..e9f3ebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changelog +### v1.0.5 + +- fixed: long menu scrolling bug with base.css and base.min.css updates (#94) + ### v1.0.4 - fixed: default highlightjs support is supposed to be active by default and is not supposed to require configuration in the `mkdocs.yml` file. This behavior was restored after recent changes. highlightjs support can be removed by setting `theme > highlightjs` to `false`. diff --git a/docs/index.md b/docs/index.md index 55231b9..122f06f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -34,7 +34,7 @@ Then navigate to the root of your project directory: Download the Cinder theme archive by clicking the button below. - + Unpack the contents of the archive into a directory named `cinder` at the top level of your MkDocs project directory. diff --git a/setup.py b/setup.py index d45644e..4b73179 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = "1.0.4" +VERSION = "1.0.5" setup( @@ -13,6 +13,10 @@ author_email="chris@sourcefoundry.org", packages=find_packages(), include_package_data=True, - entry_points={"mkdocs.themes": ["cinder = cinder",]}, + entry_points={ + "mkdocs.themes": [ + "cinder = cinder", + ] + }, zip_safe=False, )