Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jun 6, 2024
1 parent 1eee6ec commit ba809c9
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.26.6] - 2024-06-06

### Features

- Support for jekyll's `sort`
Expand Down Expand Up @@ -908,7 +910,8 @@ Minor docs change.
* Moved `pluralize` to `extra-filters` ([17d57c09](https://github.com/cobalt-org/liquid-rust/commit/17d57c093fc8771531c13b6f587b44b2b25d2b03))

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v0.26.5...HEAD
[Unreleased]: https://github.com/cobalt-org/liquid-rust/compare/v0.26.6...HEAD
[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
[0.26.4]: https://github.com/assert-rs/predicates-rs/compare/v0.26.3...v0.26.4
[0.26.3]: https://github.com/assert-rs/predicates-rs/compare/v0.26.2...v0.26.3
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ include = [

[package]
name = "liquid"
version = "0.26.5"
version = "0.26.6"
description = "The liquid templating language for Rust"
repository = "https://github.com/cobalt-org/liquid-rust"
documentation = "https://docs.rs/liquid"
Expand Down Expand Up @@ -52,9 +52,9 @@ stdlib = ["liquid-lib/stdlib"]

[dependencies]
doc-comment = "0.3"
liquid-core = { version = "^0.26.5", path = "crates/core" }
liquid-core = { version = "^0.26.6", path = "crates/core" }
liquid-derive = { version = "^0.26.5", path = "crates/derive" }
liquid-lib = { version = "^0.26.5", path = "crates/lib", optional = true }
liquid-lib = { version = "^0.26.6", path = "crates/lib", optional = true }
serde = { version = "1.0.157", features = ["derive"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
liquid = { version = "^0.26.5", path = "../../" }
liquid = { version = "^0.26.6", path = "../../" }
serde = { version = "1.0.157", features = ["derive"] }
clap = { version = "4.3", features = ["derive"] }
serde_yaml = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liquid-core"
version = "0.26.5"
version = "0.26.6"
authors = ["Ed Page <eopage@gmail.com>"]
description = "Core liquid functionality"
repository = "https://github.com/cobalt-org/liquid-rust/tree/master/crate/core"
Expand Down
2 changes: 1 addition & 1 deletion crates/help-md/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
liquid-core = { version = "^0.26.5", path = "../core" }
liquid-core = { version = "^0.26.6", path = "../core" }
4 changes: 2 additions & 2 deletions crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liquid-lib"
version = "0.26.5"
version = "0.26.6"
authors = ["Johann Hofmann <mail@johann-hofmann.com>"]
description = "The liquid templating language for Rust"
repository = "https://github.com/cobalt-org/liquid-rust/tree/master/liquid-lib"
Expand All @@ -18,7 +18,7 @@ features = [ "default", "jekyll", "all" ]
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
liquid-core = { version = "^0.26.5", path = "../core", features = ["derive"] }
liquid-core = { version = "^0.26.6", path = "../core", features = ["derive"] }
itertools = "0.12.0"
regex = "1.0"
unicode-segmentation = "1.2"
Expand Down

0 comments on commit ba809c9

Please sign in to comment.