diff --git a/ChangeLog.md b/ChangeLog.md index cbd1952..70a408a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ # Change Log +## [0.3.6] - 2024-08-02 + +- Small fix: include missing non-python files in the package. + ## [0.3.5] - 2024-08-02 - Provide better for version-change directives (`versionadded`, `versionchanged`, `deprecated`, and `versionremoved`) when they only get a version number and no optional explanatory text. diff --git a/MANIFEST.in b/MANIFEST.in index c848050..6e99ab4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,7 @@ include README.md include requirements.txt +recursive-include sphinx_nefertiti *.* recursive-include sphinx_nefertiti/colorsets *.* recursive-include sphinx_nefertiti/fonts **/*.* recursive-include sphinx_nefertiti/static/ *.* diff --git a/package.json b/package.json index 76eb9cc..85493b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sphinx-nefertiti", - "version": "0.3.5", + "version": "0.3.6", "private": true, "description": "Nefertiti is a theme for the Sphinx Documentation Generator.", "engines": { diff --git a/setup.py b/setup.py index 014e3b2..a99ba71 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name="sphinx-nefertiti", - version="0.3.5", + version="0.3.6", packages=find_packages(), include_package_data=True, license="MIT", diff --git a/sphinx_nefertiti/utils.py b/sphinx_nefertiti/utils.py index e875316..361fbb6 100644 --- a/sphinx_nefertiti/utils.py +++ b/sphinx_nefertiti/utils.py @@ -1,4 +1,4 @@ -_CURRENT_VERSION = (0, 3, 5, "f", 0) # following PEP 440 +_CURRENT_VERSION = (0, 3, 6, "f", 0) # following PEP 440 def get_version():