Skip to content

Commit d5ea9d3

Browse files
committed
chore: Release
1 parent 750983c commit d5ea9d3

File tree

8 files changed

+23
-20
lines changed

8 files changed

+23
-20
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.11] - 2025-02-04
11+
1012
### Features
1113

1214
- Implicitly convert timestamps to date-times
@@ -930,7 +932,8 @@ Minor docs change.
930932
* Moved `pluralize` to `extra-filters` ([17d57c09](https://github.com/cobalt-org/liquid-rust/commit/17d57c093fc8771531c13b6f587b44b2b25d2b03))
931933

932934
<!-- next-url -->
933-
[Unreleased]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.10...HEAD
935+
[Unreleased]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.11...HEAD
936+
[0.26.11]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.10...v0.26.11
934937
[0.26.10]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.9...v0.26.10
935938
[0.26.9]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.8...v0.26.9
936939
[0.26.8]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.7...v0.26.8

Cargo.lock

Lines changed: 6 additions & 6 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
@@ -91,7 +91,7 @@ zero_sized_map_values = "warn"
9191

9292
[package]
9393
name = "liquid"
94-
version = "0.26.10"
94+
version = "0.26.11"
9595
description = "The liquid templating language for Rust"
9696
categories = ["template-engine"]
9797
repository.workspace = true
@@ -118,9 +118,9 @@ default = ["stdlib"]
118118
stdlib = ["liquid-lib/stdlib"]
119119

120120
[dependencies]
121-
liquid-core = { version = "^0.26.10", path = "crates/core" }
122-
liquid-derive = { version = "^0.26.9", path = "crates/derive" }
123-
liquid-lib = { version = "^0.26.10", path = "crates/lib", optional = true }
121+
liquid-core = { version = "^0.26.11", path = "crates/core" }
122+
liquid-derive = { version = "^0.26.10", path = "crates/derive" }
123+
liquid-lib = { version = "^0.26.11", path = "crates/lib", optional = true }
124124
serde = { version = "1.0.157", features = ["derive"] }
125125

126126
[dev-dependencies]

crates/bin/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-bin"
3-
version = "0.26.8"
3+
version = "0.26.9"
44
description = "The liquid templating language for Rust"
55
categories = ["template-engine"]
66
keywords = ["liquid", "template", "templating", "language", "html"]
@@ -15,7 +15,7 @@ all-features = true
1515
rustdoc-args = ["--cfg", "docsrs"]
1616

1717
[dependencies]
18-
liquid = { version = "^0.26.10", path = "../../" }
18+
liquid = { version = "^0.26.11", path = "../../" }
1919
serde = { version = "1.0.157", features = ["derive"] }
2020
clap = { version = "4.3", features = ["derive"] }
2121
serde_yaml = "0.8.26"

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.10"
3+
version = "0.26.11"
44
description = "Core liquid functionality"
55
categories = ["template-engine"]
66
keywords = ["liquid", "template", "templating", "language", "html"]
@@ -25,7 +25,7 @@ regex = "1.5"
2525
time = { version = "0.3.37", default-features = false, features = ["formatting", "macros", "parsing"] }
2626
serde = { version = "1.0.157", features = ["derive"] }
2727
kstring = { version = "2.0", features = ["serde"] }
28-
liquid-derive = { version = "^0.26.9", path = "../derive", optional = true }
28+
liquid-derive = { version = "^0.26.10", path = "../derive", optional = true }
2929

3030
[dev-dependencies]
3131
serde_yaml = "0.8.26"

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.9"
3+
version = "0.26.10"
44
description = "The liquid templating language for Rust"
55
categories = ["template-engine"]
66
keywords = ["liquid", "template", "templating", "language", "html"]

crates/help-md/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-help-md"
3-
version = "0.26.7"
3+
version = "0.26.8"
44
description = "Describe Liquid language via markdown"
55
categories = ["template-engine"]
66
keywords = ["liquid", "template", "templating", "language", "html"]
@@ -15,7 +15,7 @@ all-features = true
1515
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
1616

1717
[dependencies]
18-
liquid-core = { version = "^0.26.10", path = "../core" }
18+
liquid-core = { version = "^0.26.11", path = "../core" }
1919

2020
[lints]
2121
workspace = true

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.10"
3+
version = "0.26.11"
44
description = "The liquid templating language for Rust"
55
categories = ["template-engine"]
66
keywords = ["liquid", "template", "templating", "language", "html"]
@@ -15,7 +15,7 @@ features = [ "default", "jekyll", "all" ]
1515
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
1616

1717
[dependencies]
18-
liquid-core = { version = "^0.26.10", path = "../core", features = ["derive"] }
18+
liquid-core = { version = "^0.26.11", path = "../core", features = ["derive"] }
1919
itertools = "0.14.0"
2020
regex = "1.0"
2121
unicode-segmentation = "1.2"

0 commit comments

Comments
 (0)