-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
18 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ members = [ | |
|
||
[package] | ||
name = "liquid" | ||
version = "0.23.1" | ||
version = "0.24.0" | ||
description = "The liquid templating language for Rust" | ||
authors = ["Johann Hofmann <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -41,9 +41,9 @@ stdlib = ["liquid-lib/stdlib"] | |
[dependencies] | ||
doc-comment = "0.3" | ||
kstring = "1.0" | ||
liquid-core = { version = "^0.23.0", path = "crates/core" } | ||
liquid-derive = { version = "^0.23.0", path = "crates/derive" } | ||
liquid-lib = { version = "^0.23.0", path = "crates/lib", optional = true } | ||
liquid-core = { version = "^0.24.0", path = "crates/core" } | ||
liquid-derive = { version = "^0.24.0", path = "crates/derive" } | ||
liquid-lib = { version = "^0.24.0", path = "crates/lib", optional = true } | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "liquid-bin" | ||
version = "0.23.1" | ||
version = "0.24.0" | ||
authors = ["Ed Page <[email protected]>"] | ||
description = "The liquid templating language for Rust" | ||
repository = "https://github.com/cobalt-org/liquid-rust" | ||
|
@@ -19,7 +19,7 @@ include = [ | |
] | ||
|
||
[dependencies] | ||
liquid = { version = "^0.23.0", path = "../../" } | ||
liquid = { version = "^0.24.0", path = "../../" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
structopt = "0.3" | ||
serde_yaml = "0.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "liquid-core" | ||
version = "0.23.2" | ||
version = "0.24.0" | ||
authors = ["Ed Page <[email protected]>"] | ||
description = "Core liquid functionality" | ||
repository = "https://github.com/cobalt-org/liquid-rust/tree/master/crate/core" | ||
|
@@ -29,7 +29,7 @@ pest_derive = "2.0" | |
time = { version = "0.3", default-features = false, features = ["formatting", "macros", "parsing"] } | ||
serde = { version = "1.0", features = ["derive"] } | ||
kstring = "1.0" | ||
liquid-derive = { version = "^0.23.0", path = "../derive", optional = true } | ||
liquid-derive = { version = "^0.24.0", path = "../derive", optional = true } | ||
|
||
[dev-dependencies] | ||
difference = "2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "liquid-derive" | ||
version = "0.23.1" | ||
version = "0.24.0" | ||
authors = ["Pedro Gonçalo Correia <[email protected]>"] | ||
description = "The liquid templating language for Rust" | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "liquid-help-md" | ||
version = "0.23.1" | ||
version = "0.24.0" | ||
authors = ["Ed Page <[email protected]>"] | ||
description = "Describe Liquid language via markdown" | ||
repository = "https://github.com/cobalt-org/liquid-rust" | ||
|
@@ -19,4 +19,4 @@ include = [ | |
] | ||
|
||
[dependencies] | ||
liquid-core = { version = "^0.23.0", path = "../core" } | ||
liquid-core = { version = "^0.24.0", path = "../core" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "liquid-lib" | ||
version = "0.23.1" | ||
version = "0.24.0" | ||
authors = ["Johann Hofmann <[email protected]>"] | ||
description = "The liquid templating language for Rust" | ||
repository = "https://github.com/cobalt-org/liquid-rust/tree/master/liquid-lib" | ||
|
@@ -22,7 +22,7 @@ include = [ | |
features = [ "default", "jekyll", "all" ] | ||
|
||
[dependencies] | ||
liquid-core = { version = "^0.23.0", path = "../core", features = ["derive"] } | ||
liquid-core = { version = "^0.24.0", path = "../core", features = ["derive"] } | ||
kstring = "1.0" | ||
itertools = "0.10.0" | ||
regex = "1.0" | ||
|