diff --git a/j9-sys/Cargo.toml b/j9-sys/Cargo.toml index 1ccb118..bb88e45 100644 --- a/j9-sys/Cargo.toml +++ b/j9-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j9-sys" -version = "0.1.3" +version = "0.1.4" authors = ["ynqa "] edition = "2021" description = "Rust bindings for jq" diff --git a/j9/Cargo.toml b/j9/Cargo.toml index 49cde86..c000b9a 100644 --- a/j9/Cargo.toml +++ b/j9/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j9" -version = "0.1.3" +version = "0.1.4" authors = ["ynqa "] edition = "2021" description = "Rust interface for jq-based JSON processing" @@ -12,7 +12,7 @@ name = "j9" path = "src/lib.rs" [dependencies] -j9-sys = { path = "../j9-sys", version = "0.1.3" } +j9-sys = { path = "../j9-sys", version = "0.1.4" } thiserror = "1.0.57" [dev-dependencies] diff --git a/j9/README.md b/j9/README.md index 26bbe6e..c26b401 100644 --- a/j9/README.md +++ b/j9/README.md @@ -9,7 +9,7 @@ To use j9, add it as a dependency in your Cargo.toml: ```toml [dependencies] -j9 = "0.1.3" +j9 = "0.1.4" ``` ## Example