Bump version to 0.2.0 and add changelog entry for PR #7

This commit is contained in:
Jan Holthuis 2020-04-19 12:42:07 +02:00
parent 0613289747
commit d6712690f2
3 changed files with 13 additions and 3 deletions

View file

@ -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 <issue4_>`_, `#7 <issue7_>`_).
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

View file

@ -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"

View file

@ -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"],