From 08a920efc978a1c4f248f5f1ea8779d18a4b0bc6 Mon Sep 17 00:00:00 2001 From: ynqa Date: Wed, 20 Mar 2024 14:51:41 +0900 Subject: [PATCH] bump up version to v0.1.1 --- Cargo.toml | 1 + j9-sys/Cargo.toml | 2 +- j9/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 74f4d82..05c81f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ "j9", "j9-sys", diff --git a/j9-sys/Cargo.toml b/j9-sys/Cargo.toml index 160976d..f30806a 100644 --- a/j9-sys/Cargo.toml +++ b/j9-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j9-sys" -version = "0.1.0" +version = "0.1.1" authors = ["ynqa "] edition = "2021" description = "Rust bindings for jq" diff --git a/j9/Cargo.toml b/j9/Cargo.toml index 56c405b..ac2378e 100644 --- a/j9/Cargo.toml +++ b/j9/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j9" -version = "0.1.0" +version = "0.1.1" 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.0" } +j9-sys = { path = "../j9-sys", version = "0.1.1" } thiserror = "1.0.57" [dev-dependencies]