diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c73d560e..4c3a7ec24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.26.8] - 2024-07-25 + ## [0.26.7] - 2024-07-25 ## [0.26.6] - 2024-06-06 @@ -912,7 +914,8 @@ Minor docs change. * Moved `pluralize` to `extra-filters` ([17d57c09](https://github.com/cobalt-org/liquid-rust/commit/17d57c093fc8771531c13b6f587b44b2b25d2b03)) -[Unreleased]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.7...HEAD +[Unreleased]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.8...HEAD +[0.26.8]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.7...v0.26.8 [0.26.7]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.6...v0.26.7 [0.26.6]: https://github.com/assert-rs/predicates-rs/compare/v0.26.5...v0.26.6 [0.26.5]: https://github.com/assert-rs/predicates-rs/compare/v0.26.4...v0.26.5 diff --git a/Cargo.lock b/Cargo.lock index 24ab2a3be..683eaba9e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -518,7 +518,7 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "liquid" -version = "0.26.7" +version = "0.26.8" dependencies = [ "criterion", "doc-comment", @@ -537,7 +537,7 @@ dependencies = [ [[package]] name = "liquid-bin" -version = "0.26.5" +version = "0.26.6" dependencies = [ "clap", "derive_more", @@ -549,7 +549,7 @@ dependencies = [ [[package]] name = "liquid-core" -version = "0.26.7" +version = "0.26.8" dependencies = [ "anymap2", "itertools 0.13.0", @@ -567,7 +567,7 @@ dependencies = [ [[package]] name = "liquid-derive" -version = "0.26.6" +version = "0.26.7" dependencies = [ "proc-macro2", "quote", @@ -576,14 +576,14 @@ dependencies = [ [[package]] name = "liquid-help-md" -version = "0.26.5" +version = "0.26.6" dependencies = [ "liquid-core", ] [[package]] name = "liquid-lib" -version = "0.26.7" +version = "0.26.8" dependencies = [ "deunicode", "itertools 0.13.0", diff --git a/Cargo.toml b/Cargo.toml index e6272d6d6..dcac9cf81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ include = [ [package] name = "liquid" -version = "0.26.7" +version = "0.26.8" description = "The liquid templating language for Rust" repository = "https://github.com/cobalt-org/liquid-rust" documentation = "https://docs.rs/liquid" @@ -52,9 +52,9 @@ stdlib = ["liquid-lib/stdlib"] [dependencies] doc-comment = "0.3" -liquid-core = { version = "^0.26.7", path = "crates/core" } -liquid-derive = { version = "^0.26.6", path = "crates/derive" } -liquid-lib = { version = "^0.26.7", path = "crates/lib", optional = true } +liquid-core = { version = "^0.26.8", path = "crates/core" } +liquid-derive = { version = "^0.26.7", path = "crates/derive" } +liquid-lib = { version = "^0.26.8", path = "crates/lib", optional = true } serde = { version = "1.0.157", features = ["derive"] } [dev-dependencies] diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index 3ef39905a..c90996731 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liquid-bin" -version = "0.26.5" +version = "0.26.6" authors = ["Ed Page "] description = "The liquid templating language for Rust" repository = "https://github.com/cobalt-org/liquid-rust" @@ -18,7 +18,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -liquid = { version = "^0.26.7", path = "../../" } +liquid = { version = "^0.26.8", path = "../../" } serde = { version = "1.0.157", features = ["derive"] } clap = { version = "4.3", features = ["derive"] } serde_yaml = "0.8" diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index c6df0829d..05a0feb83 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liquid-core" -version = "0.26.7" +version = "0.26.8" authors = ["Ed Page "] description = "Core liquid functionality" repository = "https://github.com/cobalt-org/liquid-rust/tree/master/crate/core" @@ -29,7 +29,7 @@ regex = "1.5" time = { version = "0.3", default-features = false, features = ["formatting", "macros", "parsing"] } serde = { version = "1.0.157", features = ["derive"] } kstring = { version = "2.0", features = ["serde"] } -liquid-derive = { version = "^0.26.6", path = "../derive", optional = true } +liquid-derive = { version = "^0.26.7", path = "../derive", optional = true } [dev-dependencies] serde_yaml = "0.8" diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index e109a2d8c..d553637ca 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liquid-derive" -version = "0.26.6" +version = "0.26.7" authors = ["Pedro Gonçalo Correia "] description = "The liquid templating language for Rust" readme = "README.md" diff --git a/crates/help-md/Cargo.toml b/crates/help-md/Cargo.toml index 9c0f0ecf8..7471efd68 100644 --- a/crates/help-md/Cargo.toml +++ b/crates/help-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liquid-help-md" -version = "0.26.5" +version = "0.26.6" authors = ["Ed Page "] description = "Describe Liquid language via markdown" repository = "https://github.com/cobalt-org/liquid-rust" @@ -18,4 +18,4 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -liquid-core = { version = "^0.26.7", path = "../core" } +liquid-core = { version = "^0.26.8", path = "../core" } diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 16b8a14ff..d0d5c278f 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liquid-lib" -version = "0.26.7" +version = "0.26.8" authors = ["Johann Hofmann "] description = "The liquid templating language for Rust" repository = "https://github.com/cobalt-org/liquid-rust/tree/master/liquid-lib" @@ -18,7 +18,7 @@ features = [ "default", "jekyll", "all" ] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -liquid-core = { version = "^0.26.7", path = "../core", features = ["derive"] } +liquid-core = { version = "^0.26.8", path = "../core", features = ["derive"] } itertools = "0.13.0" regex = "1.0" unicode-segmentation = "1.2"