Skip to content

Commit

Permalink
Merge pull request #66 from wbond/0_9_7
Browse files Browse the repository at this point in the history
Bump version to 0.9.7
  • Loading branch information
isaacdd authored Nov 5, 2019
2 parents 44815d4 + fd29258 commit 7a8bd6d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE *.md
include tests.py
recursive-include tests *.py
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# changelog

## 0.9.7

- Add support for whitespace control, `{{var~}}` (Handlebars 1.1)
- Add "list.length" support

## 0.9.6

- Add `template` method which creates a renderer from precompiled code.
Expand Down
4 changes: 2 additions & 2 deletions pybars/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
PybarsError
)

__version__ = '0.9.6'
__version_info__ = (0, 9, 6, 'final', 0)
__version__ = '0.9.7'
__version_info__ = (0, 9, 7, 'final', 0)

__all__ = [
'Compiler',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


setup(name='pybars3',
version='0.9.6',
version='0.9.7',
description='Handlebars.js templating for Python 3 and 2',
long_description='Documentation is maintained at https://github.com/wbond/pybars3#readme',
author='wbond, mjumbewu',
Expand Down

0 comments on commit 7a8bd6d

Please sign in to comment.