diff --git a/docs/changelog.rst b/docs/changelog.rst index 1c33a39..54e1179 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,12 @@ Changelog ========= +Version 0.2 +=========== + +* Added a way to override config variables using placeholders that expand to each version's actual value (`#4 `_, `#7 `_). + + Version 0.1 =========== @@ -17,3 +23,7 @@ Version 0.1.0 ------------- * Initial release + + +.. _issue4: https://github.com/Holzhaus/sphinx-multiversion/issues/4 +.. _issue7: https://github.com/Holzhaus/sphinx-multiversion/issues/7 diff --git a/docs/conf.py b/docs/conf.py index 6d3064a..a195a8a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,8 +4,8 @@ import time author = "Jan Holthuis" project = "sphinx-multiversion" -release = "0.1.1" -version = "0.1" +release = "0.2.0" +version = "0.2" copyright = "{}, {}".format(time.strftime("%Y"), author) html_last_updated_fmt = "%c" diff --git a/setup.py b/setup.py index 4827ca9..469533b 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( author="Jan Holthuis", author_email="holthuis.jan@googlemail.com", url="https://holzhaus.github.io/sphinx-multiversion/", - version="0.1.1", + version="0.2.0", install_requires=["sphinx >= 2.1"], license="BSD", packages=["sphinx_multiversion"],