Skip to content

Commit

Permalink
Merge pull request #113 from ChrisKnott/shw-fix-jinja-example
Browse files Browse the repository at this point in the history
Fix jinja example; add changelog and bump version
  • Loading branch information
ChrisKnott authored Feb 13, 2019
2 parents 3dc7e75 + 9f3ab56 commit a12e0a9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change log

## v0.10.0
* Corrective version bump after new feature included in 0.9.13
* Fix a bug with example 06 for Jinja templating; the `templates` kwarg to `eel.start` takes a filepath, not a bool.

## v0.9.13
* Add support for Jinja templating.

## Earlier
* No changelog notes for earlier versions.
2 changes: 1 addition & 1 deletion examples/06 - jinja_templates/hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ def say_hello_py(x):
say_hello_py('Python World!')
eel.say_hello_js('Python World!') # Call a Javascript function

eel.start('templates/hello.html', size=(300, 200), templates=True) # Start
eel.start('templates/hello.html', size=(300, 200), templates='templates') # Start
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='Eel',
version='0.9.13',
version='0.10.0',
author='Chris Knott',
author_email='[email protected]',
packages=['eel'],
Expand Down

0 comments on commit a12e0a9

Please sign in to comment.