From d4913830ea2f8210b825a0561ece377654af345b Mon Sep 17 00:00:00 2001 From: James Prior Date: Sat, 27 Jan 2024 16:00:25 +0000 Subject: [PATCH] Update change log and bump version number. --- CHANGES.md | 8 +++++++- liquid/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index bdc1955..4267512 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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** @@ -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 diff --git a/liquid/__init__.py b/liquid/__init__.py index 3707353..d8851b5 100644 --- a/liquid/__init__.py +++ b/liquid/__init__.py @@ -42,7 +42,7 @@ from . import future -__version__ = "1.10.2" +__version__ = "1.10.3" __all__ = ( "AwareBoundTemplate",