diff --git a/CHANGELOG.md b/CHANGELOG.md index eaa79e8d..84340ec2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.12.0 (unreleased) + +- Support parenthesis in if statemetns +- Allow escaped newline and tab join separator +- ## 1.19.1 (2023-09-03) - Minimum supported Rust version (MSRV) is now 1.63 due to transitive dependencies. diff --git a/Cargo.toml b/Cargo.toml index 1f2fcf0e..c74e9787 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ humansize = {version = "2.1", optional = true} # used in date format filter chrono = {version = "0.4.27", optional = true, default-features = false, features = ["std", "clock"]} # used in date format filter -chrono-tz = {version = "0.8", optional = true} +chrono-tz = {version = "0.9", optional = true} # used in get_random function rand = {version = "0.8", optional = true} diff --git a/src/parser/tests/errors.rs b/src/parser/tests/errors.rs index 424be719..8b58c440 100644 --- a/src/parser/tests/errors.rs +++ b/src/parser/tests/errors.rs @@ -46,7 +46,7 @@ fn wrong_end_block() { "{{ hey %}", &[ "1:9", - "expected an integer, a float, `true` or `false`, an identifier (must start with a-z), a dotted identifier (identifiers separated by `.`), a square bracketed identifier (identifiers separated by `.` or `[]`s), or an expression" + "expected an integer, a float, `true` or `false`, an identifier (must start with a-z), a square bracketed identifier (identifiers separated by `.` or `[]`s), or an expression" ], ); }