Update version.
This commit is contained in:
parent
2a7128c9ab
commit
cfd7564c9a
2 changed files with 3 additions and 2 deletions
|
|
@ -118,7 +118,7 @@ Example declaring a media loader:
|
||||||
def db_images_loader(value, *args, *kwargs):
|
def db_images_loader(value, *args, *kwargs):
|
||||||
# load from images collection the image with `value` id.
|
# load from images collection the image with `value` id.
|
||||||
image = db.images.findOne({'_id': value})
|
image = db.images.findOne({'_id': value})
|
||||||
|
|
||||||
return (image, the_image_mimetype)
|
return (image, the_image_mimetype)
|
||||||
|
|
||||||
engine.render(template, **template_vars)
|
engine.render(template, **template_vars)
|
||||||
|
|
@ -147,6 +147,7 @@ Pad zeroes to `value` to the left until output value's length be equal to `lengt
|
||||||
Secretary supports most of the jinja2 control structure/flow tags. But please avoid using the following tags since they are not supported: `block`, `extends`, `macro`, `call`, `include` and `import`.
|
Secretary supports most of the jinja2 control structure/flow tags. But please avoid using the following tags since they are not supported: `block`, `extends`, `macro`, `call`, `include` and `import`.
|
||||||
|
|
||||||
### Version History
|
### Version History
|
||||||
|
* **0.2.8**: Fixs #25. Some internal refactorings. Drop the minimal support for jinja tags in plain text.
|
||||||
* **0.2.7**: Truly fix regexps used to unscape XML entities present inside Jinja tags.
|
* **0.2.7**: Truly fix regexps used to unscape XML entities present inside Jinja tags.
|
||||||
* **0.2.6**: **AVOID THIS RELEASE** ~~Fix regexps used to unscape XML entities present inside Jinja tags.~~
|
* **0.2.6**: **AVOID THIS RELEASE** ~~Fix regexps used to unscape XML entities present inside Jinja tags.~~
|
||||||
* **0.2.5**: Fix issues [#14](https://github.com/christopher-ramirez/secretary/issues/14) and [#16](https://github.com/christopher-ramirez/secretary/issues/16). Thanks to [DieterBuysAI](/DieterBuysAI) for this release.
|
* **0.2.5**: Fix issues [#14](https://github.com/christopher-ramirez/secretary/issues/14) and [#16](https://github.com/christopher-ramirez/secretary/issues/16). Thanks to [DieterBuysAI](/DieterBuysAI) for this release.
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -26,7 +26,7 @@ class PyTest(TestCommand):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='secretary',
|
name='secretary',
|
||||||
version='0.2.7',
|
version='0.2.8',
|
||||||
url='https://github.com/christopher-ramirez/secretary',
|
url='https://github.com/christopher-ramirez/secretary',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
author='Christopher Ramírez',
|
author='Christopher Ramírez',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue