Skip to content

Commit

Permalink
Bump version: 0.5.0 → 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
knowsuchagency committed Jul 8, 2017
1 parent 303d1f9 commit 9eb0260
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ninjadog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Stephan Fitzpatrick"""
__email__ = 'knowsuchagency@gmail.com'
__version__ = '0.5.0'
__version__ = '0.5.1'

from ninjadog.ext.pyramid import includeme
from ninjadog.ninjadog import render
4 changes: 2 additions & 2 deletions ninjadog/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""ninjadog v0.5.0
"""ninjadog v0.5.1
Render pug templates to html.
Expand Down Expand Up @@ -68,7 +68,7 @@ def render_directory(source: Path, destination: Path = None, **kwargs):

def main(argv: T.Optional[T.Iterable] = None):
"""Render pug template to stdout."""
args = docopt(__doc__, argv=argv, version='0.5.0')
args = docopt(__doc__, argv=argv, version='0.5.1')

if args['--file'] and args['<file>']:
raise ValueError("Cannot combine --file and <file> arguments")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.5.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def gen():

setup(
name='ninjadog',
version='0.5.0',
version='0.5.1',
description="Pug template support in Python",
long_description=Path('README.rst').read_text(),
author="Stephan Fitzpatrick",
Expand Down

0 comments on commit 9eb0260

Please sign in to comment.