Skip to content

Commit

Permalink
Bump version: 0.2.2 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
knowsuchagency committed Jun 27, 2017
1 parent 45429e6 commit 5b4fa20
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,6 +4,6 @@

__author__ = """Stephan Fitzpatrick"""
__email__ = 'knowsuchagency@gmail.com'
__version__ = '0.2.2'
__version__ = '0.3.0'

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.2.2
"""ninjadog v0.3.0
Usage:
ninjadog string [options] <string>
Expand Down Expand Up @@ -30,7 +30,7 @@

def main():
"""Render pug template to stdout."""
args = docopt(__doc__, argv=None, version='0.2.2')
args = docopt(__doc__, argv=None, version='0.3.0')

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.2.2
current_version = 0.3.0
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 @@ -21,7 +21,7 @@

setup(
name='ninjadog',
version='0.2.2',
version='0.3.0',
description="Pug template support in Python",
long_description=readme,
author="Stephan Fitzpatrick",
Expand Down

0 comments on commit 5b4fa20

Please sign in to comment.