Skip to content

Commit be5b50b

Browse files
committed
chore: Release
1 parent 2ec8564 commit be5b50b

File tree

8 files changed

+21
-18
lines changed

8 files changed

+21
-18
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.10] - 2025-01-24
11+
1012
### Internal
1113

1214
- Remove some dependencies
@@ -924,7 +926,8 @@ Minor docs change.
924926
* Moved `pluralize` to `extra-filters` ([17d57c09](https://github.com/cobalt-org/liquid-rust/commit/17d57c093fc8771531c13b6f587b44b2b25d2b03))
925927

926928
<!-- next-url -->
927-
[Unreleased]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.9...HEAD
929+
[Unreleased]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.10...HEAD
930+
[0.26.10]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.9...v0.26.10
928931
[0.26.9]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.8...v0.26.9
929932
[0.26.8]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.7...v0.26.8
930933
[0.26.7]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.6...v0.26.7

Cargo.lock

Lines changed: 5 additions & 5 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.9"
24+
version = "0.26.10"
2525
description = "The liquid templating language for Rust"
2626
repository = "https://github.com/cobalt-org/liquid-rust"
2727
documentation = "https://docs.rs/liquid"
@@ -51,9 +51,9 @@ default = ["stdlib"]
5151
stdlib = ["liquid-lib/stdlib"]
5252

5353
[dependencies]
54-
liquid-core = { version = "^0.26.9", path = "crates/core" }
55-
liquid-derive = { version = "^0.26.8", path = "crates/derive" }
56-
liquid-lib = { version = "^0.26.9", path = "crates/lib", optional = true }
54+
liquid-core = { version = "^0.26.10", path = "crates/core" }
55+
liquid-derive = { version = "^0.26.9", path = "crates/derive" }
56+
liquid-lib = { version = "^0.26.10", path = "crates/lib", optional = true }
5757
serde = { version = "1.0.157", features = ["derive"] }
5858

5959
[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.7"
3+
version = "0.26.8"
44
authors = ["Ed Page <eopage@gmail.com>"]
55
description = "The liquid templating language for Rust"
66
repository = "https://github.com/cobalt-org/liquid-rust"
@@ -18,7 +18,7 @@ all-features = true
1818
rustdoc-args = ["--cfg", "docsrs"]
1919

2020
[dependencies]
21-
liquid = { version = "^0.26.9", path = "../../" }
21+
liquid = { version = "^0.26.10", 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.9"
3+
version = "0.26.10"
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"
@@ -28,7 +28,7 @@ regex = "1.5"
2828
time = { version = "0.3", default-features = false, features = ["formatting", "macros", "parsing"] }
2929
serde = { version = "1.0.157", features = ["derive"] }
3030
kstring = { version = "2.0", features = ["serde"] }
31-
liquid-derive = { version = "^0.26.8", path = "../derive", optional = true }
31+
liquid-derive = { version = "^0.26.9", path = "../derive", optional = true }
3232

3333
[dev-dependencies]
3434
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.8"
3+
version = "0.26.9"
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.9", path = "../core" }
21+
liquid-core = { version = "^0.26.10", 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.9"
3+
version = "0.26.10"
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.9", path = "../core", features = ["derive"] }
21+
liquid-core = { version = "^0.26.10", path = "../core", features = ["derive"] }
2222
itertools = "0.14.0"
2323
regex = "1.0"
2424
unicode-segmentation = "1.2"

0 commit comments

Comments
 (0)