Skip to content

Commit

Permalink
Update change log and bump version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
jg-rp committed Jan 27, 2024
1 parent 38c0258 commit d491383
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Python Liquid Change Log

## Version 1.10.3 (unreleased)

**Fixes**

- Fixed comparing strings with `<`, `<=`, `>` and `>=` in boolean expressions (`{% if %}` and `{% unless %}`). Previously we were raising a `LiquidTypeError`, now we return the result of comparing two string by their lexicographical order.

## Version 1.10.2

**Fixes**
Expand All @@ -10,7 +16,7 @@

## Version 1.10.1

Version 1.10.1 was accidentally skipped and not officially released.
Version 1.10.1 was accidentally skipped and not released.

## Version 1.10.0

Expand Down
2 changes: 1 addition & 1 deletion liquid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

from . import future

__version__ = "1.10.2"
__version__ = "1.10.3"

__all__ = (
"AwareBoundTemplate",
Expand Down

0 comments on commit d491383

Please sign in to comment.