From 920bab4c30ac2f9bc3b5205c28116e833014795a Mon Sep 17 00:00:00 2001 From: ynqa Date: Thu, 14 Nov 2024 00:39:44 +0900 Subject: [PATCH] bump up version to v0.1.4 --- j9-sys/Cargo.toml | 2 +- j9/Cargo.toml | 4 ++-- j9/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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