Skip to content

Commit

Permalink
Get ready for release (#920)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keats authored May 27, 2024
1 parent 7b3942b commit 0d5de55
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down
2 changes: 1 addition & 1 deletion src/parser/tests/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
);
}
Expand Down

0 comments on commit 0d5de55

Please sign in to comment.