diff --git a/CHANGELOG.md b/CHANGELOG.md index 90bf437..0d5422b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.8 + +- Added rendering of the main article image on the article header. + # 0.1.7 - Added footer to pages. diff --git a/madblog/__init__.py b/madblog/__init__.py index 124e462..c3bb296 100644 --- a/madblog/__init__.py +++ b/madblog/__init__.py @@ -1 +1 @@ -__version__ = '0.1.7' +__version__ = '0.1.8' diff --git a/setup.cfg b/setup.cfg index c5b04e7..b3af276 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.7 +current_version = 0.1.8 commit = True tag = True diff --git a/setup.py b/setup.py index 9e52713..8cc465c 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def readfile(file): setup( name='madblog', - version='0.1.7', + version='0.1.8', author='Fabio Manganiello', author_email='info@fabiomanganiello.com', description='A minimal platform for Markdown-based blogs',