Skip to content

Commit 0c2088f

Browse files
committed
chore: Release
1 parent 6746ae9 commit 0c2088f

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.26.4] - 2023-06-09
11+
1012
### Features
1113

1214
- Initial support for `render` tag
@@ -892,7 +894,8 @@ Minor docs change.
892894
* Moved `pluralize` to `extra-filters` ([17d57c09](https://github.com/cobalt-org/liquid-rust/commit/17d57c093fc8771531c13b6f587b44b2b25d2b03))
893895

894896
<!-- next-url -->
895-
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v0.26.3...HEAD
897+
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v0.26.4...HEAD
898+
[0.26.4]: https://github.com/assert-rs/predicates-rs/compare/v0.26.3...v0.26.4
896899
[0.26.3]: https://github.com/assert-rs/predicates-rs/compare/v0.26.2...v0.26.3
897900
[0.26.2]: https://github.com/assert-rs/predicates-rs/compare/v0.26.1...v0.26.2
898901
[0.26.1]: https://github.com/assert-rs/predicates-rs/compare/v0.26.0...v0.26.1

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ include = [
2121

2222
[package]
2323
name = "liquid"
24-
version = "0.26.3"
24+
version = "0.26.4"
2525
description = "The liquid templating language for Rust"
2626
repository = "https://github.com/cobalt-org/liquid-rust"
2727
documentation = "https://docs.rs/liquid"
@@ -52,9 +52,9 @@ stdlib = ["liquid-lib/stdlib"]
5252

5353
[dependencies]
5454
doc-comment = "0.3"
55-
liquid-core = { version = "^0.26.3", path = "crates/core" }
56-
liquid-derive = { version = "^0.26.3", path = "crates/derive" }
57-
liquid-lib = { version = "^0.26.3", path = "crates/lib", optional = true }
55+
liquid-core = { version = "^0.26.4", path = "crates/core" }
56+
liquid-derive = { version = "^0.26.4", path = "crates/derive" }
57+
liquid-lib = { version = "^0.26.4", path = "crates/lib", optional = true }
5858
serde = { version = "1.0.157", features = ["derive"] }
5959

6060
[dev-dependencies]

crates/bin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ all-features = true
1818
rustdoc-args = ["--cfg", "docsrs"]
1919

2020
[dependencies]
21-
liquid = { version = "^0.26.3", path = "../../" }
21+
liquid = { version = "^0.26.4", path = "../../" }
2222
serde = { version = "1.0.157", features = ["derive"] }
2323
clap = { version = "4.3", features = ["derive"] }
2424
serde_yaml = "0.8"

crates/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "liquid-core"
3-
version = "0.26.3"
3+
version = "0.26.4"
44
authors = ["Ed Page <eopage@gmail.com>"]
55
description = "Core liquid functionality"
66
repository = "https://github.com/cobalt-org/liquid-rust/tree/master/crate/core"
@@ -29,7 +29,7 @@ regex = "1.5"
2929
time = { version = "0.3", default-features = false, features = ["formatting", "macros", "parsing"] }
3030
serde = { version = "1.0.157", features = ["derive"] }
3131
kstring = { version = "2.0", features = ["serde"] }
32-
liquid-derive = { version = "^0.26.3", path = "../derive", optional = true }
32+
liquid-derive = { version = "^0.26.4", path = "../derive", optional = true }
3333

3434
[dev-dependencies]
3535
serde_yaml = "0.8"

crates/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "liquid-derive"
3-
version = "0.26.3"
3+
version = "0.26.4"
44
authors = ["Pedro Gonçalo Correia <goncalerta@gmail.com>"]
55
description = "The liquid templating language for Rust"
66
readme = "README.md"

crates/help-md/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ all-features = true
1818
rustdoc-args = ["--cfg", "docsrs"]
1919

2020
[dependencies]
21-
liquid-core = { version = "^0.26.3", path = "../core" }
21+
liquid-core = { version = "^0.26.4", path = "../core" }

crates/lib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "liquid-lib"
3-
version = "0.26.3"
3+
version = "0.26.4"
44
authors = ["Johann Hofmann <mail@johann-hofmann.com>"]
55
description = "The liquid templating language for Rust"
66
repository = "https://github.com/cobalt-org/liquid-rust/tree/master/liquid-lib"
@@ -18,7 +18,7 @@ features = [ "default", "jekyll", "all" ]
1818
rustdoc-args = ["--cfg", "docsrs"]
1919

2020
[dependencies]
21-
liquid-core = { version = "^0.26.3", path = "../core", features = ["derive"] }
21+
liquid-core = { version = "^0.26.4", path = "../core", features = ["derive"] }
2222
itertools = "0.10.0"
2323
regex = "1.0"
2424
unicode-segmentation = "1.2"

0 commit comments

Comments
 (0)