diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d67aa..257954f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.4 + +- Titles of HTML pages now match the configured blog title + # 0.1.2 - Fixed RSS feed support. diff --git a/madblog/__init__.py b/madblog/__init__.py index 8ce9b36..7525d19 100644 --- a/madblog/__init__.py +++ b/madblog/__init__.py @@ -1 +1 @@ -__version__ = '0.1.3' +__version__ = '0.1.4' diff --git a/setup.cfg b/setup.cfg index 997fc4d..e4ecf9f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.1.4 commit = True tag = True diff --git a/setup.py b/setup.py index 28d6df4..414923e 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def readfile(file): setup( name='madblog', - version='0.1.3', + version='0.1.4', author='Fabio Manganiello', author_email='info@fabiomanganiello.com', description='A minimal platform for Markdown-based blogs',