Skip to content

Commit e81f2dd

Browse files
committed
chore(liquid-error): Release 0.19.0
1 parent 9aa7cf7 commit e81f2dd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ unicode-segmentation = "1.2"
4141
itertools = "0.8.0"
4242
url = "1.5"
4343
doc-comment = "0.3"
44-
liquid-error = { version = "0.18", path = "liquid-error" }
44+
liquid-error = { version = "^0.19", path = "liquid-error" }
4545
liquid-value = { version = "0.18", path = "liquid-value" }
4646
liquid-compiler = { version = "0.18", path = "liquid-compiler" }
4747
liquid-interpreter = { version = "0.18", path = "liquid-interpreter" }

liquid-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ pest = "2.0"
2020
pest_derive = "2.0"
2121

2222
# Exposed in API
23-
liquid-error = { version = "0.18", path = "../liquid-error" }
23+
liquid-error = { version = "^0.19", path = "../liquid-error" }
2424
liquid-value = { version = "0.18", path = "../liquid-value" }
2525
liquid-interpreter = { version = "0.18", path = "../liquid-interpreter" }

liquid-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ proc-quote = "0.2"
2121
proc-macro2 = "0.4.27"
2222

2323
# Exposed in API
24-
liquid-error = { version = "0.18", path = "../liquid-error" }
24+
liquid-error = { version = "^0.19", path = "../liquid-error" }
2525
liquid-value = { version = "0.18", path = "../liquid-value" }
2626
liquid-interpreter = { version = "0.18", path = "../liquid-interpreter" }
27-
liquid-compiler = { version = "0.18", path = "../liquid-compiler" }
27+
liquid-compiler = { version = "0.18", path = "../liquid-compiler" }

liquid-error/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-error"
3-
version = "0.18.1"
3+
version = "0.19.0"
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-error"

liquid-interpreter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ appveyor = { repository = "johannhof/liquid-rust" }
1818
itertools = "0.8.0"
1919
anymap = "0.12"
2020
# Exposed in API
21-
liquid-error = { version = "0.18", path = "../liquid-error" }
21+
liquid-error = { version = "^0.19", path = "../liquid-error" }
2222
liquid-value = { version = "0.18", path = "../liquid-value" }
2323

2424
[dev-dependencies]

liquid-value/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ num-traits = "0.2"
2020
# Exposed in API
2121
chrono = "0.4"
2222
serde = { version = "1.0", features = ["derive"] }
23-
liquid-error = { version = "0.18", path = "../liquid-error" }
23+
liquid-error = { version = "^0.19", path = "../liquid-error" }
2424

2525
[dev-dependencies]
2626
difference = "2.0"

0 commit comments

Comments
 (0)