- Notifications
You must be signed in to change notification settings - Fork10
Releases: pwwang/liquidpy
Releases · pwwang/liquidpy
0.8.4
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- feat: add 'each' filter in wild mode
Full Changelog:0.8.3...0.8.4
Assets2
0.8.3
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
This is more of a housekeeping release.
- dep: bump up dependencies
- style: fix code styles in tests
- ci: update actions
- chore(deps): bump jinja2 to 3.1.5
- ci: separate tests for python3.7
Full Changelog:0.8.2...0.8.3
Assets2
1 person reacted
0.8.2
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- deps: bump jinja2 to 3.1.3
Full Changelog:0.8.1...0.8.2
Assets2
0.8.1 (#54)
757b9bc
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- 📝 Fix badges in README.md
- 👷 Use latest actions in CI
- 🏗️ Enable automatic setup file creation with Poetry
- ⬆️ Upgrade dependencies to the latest
- ✨ Add
*
modifier for variable block to keep intial indention for multiline strings for all modeswithif True: {{* body }}
body
:will be rendered into:print("Hello")print("World")
Note that the indention ofif True: print("Hello") print("World")
print("World")
was passed along from the initial indentaion. - 📝 Update doc for "indent modifier"
Assets2
0.8.0
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- ⬆️ Upgrade deps including markdown, regex, and python-slugify
- 📌 Drop support for python3.6
- 🐛 Fix passing
env
toLiquid()
not working
What's Changed
Full Changelog:0.7.6...0.8.0
0.7.6
c0e398d
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
0.7.5
74ab6be
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- ✨ Implement a playground powered by
pyscript
- ✨ Add filter
call
forwild
mode- Example:
{{ int | call: "1" | plus 1}} # 2
- Example:
Full Changelog:0.7.4...0.7.5
Assets2
0.7.4 (#48)
dafb358
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- ✅ Add tests regarding#47
- 📌 Upgrade and pin dependencies
Assets2
0.7.3 (#43)
9ac12aa
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- 🩹 Make
default
filter work withNone
- 🩹 Make
attr
filter work with dicts - 🩹 Use filter
liquid_map
, in wild mode, instead ofmap
, which is overridden by python's builtinmap
Assets2
0.7.2 (#41)
6c3705f
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- 🐛 Fix
date
filter issues (#38,#40) - ✨ Add
markdownify
for jekyll (#36,#37) - ✨ Add
number_of_words
for jekyll - ✨ Add jekyll filter
sort
- ✨ Add jekyll filter
slugify
- ✨ Add jekyll filter
array_to_sentence_string
- ✨ Add jekyll filter
jsonify
- ✨ Add jekyll filters
xml_escape
,cgi_escape
anduri_escape
- ✨ Add
int
,float
,str
andbool
as both filters and globals for all modes (#40)