From ccc5c036312dafbf2b41931026c1c46a5780d6b1 Mon Sep 17 00:00:00 2001 From: ynqa Date: Wed, 20 Mar 2024 14:52:06 +0900 Subject: [PATCH] bump up version to 0.1.2 --- j9-sys/Cargo.toml | 2 +- j9/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/j9-sys/Cargo.toml b/j9-sys/Cargo.toml index f30806a..832858d 100644 --- a/j9-sys/Cargo.toml +++ b/j9-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j9-sys" -version = "0.1.1" +version = "0.1.2" authors = ["ynqa "] edition = "2021" description = "Rust bindings for jq" diff --git a/j9/Cargo.toml b/j9/Cargo.toml index ac2378e..af5e23e 100644 --- a/j9/Cargo.toml +++ b/j9/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j9" -version = "0.1.1" +version = "0.1.2" 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.1" } +j9-sys = { path = "../j9-sys", version = "0.1.2" } thiserror = "1.0.57" [dev-dependencies]