Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jul 25, 2024
1 parent 26ab364 commit 8de2d34
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 20 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.8] - 2024-07-25

## [0.26.7] - 2024-07-25

## [0.26.6] - 2024-06-06
Expand Down Expand Up @@ -912,7 +914,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/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
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

8 changes: 4 additions & 4 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.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"
Expand Down Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions crates/bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liquid-bin"
version = "0.26.5"
version = "0.26.6"
authors = ["Ed Page <eopage@gmail.com>"]
description = "The liquid templating language for Rust"
repository = "https://github.com/cobalt-org/liquid-rust"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions 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.7"
version = "0.26.8"
authors = ["Ed Page <eopage@gmail.com>"]
description = "Core liquid functionality"
repository = "https://github.com/cobalt-org/liquid-rust/tree/master/crate/core"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liquid-derive"
version = "0.26.6"
version = "0.26.7"
authors = ["Pedro Gonçalo Correia <goncalerta@gmail.com>"]
description = "The liquid templating language for Rust"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions crates/help-md/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liquid-help-md"
version = "0.26.5"
version = "0.26.6"
authors = ["Ed Page <eopage@gmail.com>"]
description = "Describe Liquid language via markdown"
repository = "https://github.com/cobalt-org/liquid-rust"
Expand All @@ -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" }
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.7"
version = "0.26.8"
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.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"
Expand Down

0 comments on commit 8de2d34

Please sign in to comment.