From 860b22fd8b067fc07f7e9072a8e3b353abaa0219 Mon Sep 17 00:00:00 2001 From: Christoph Burgmer Date: Thu, 2 Jul 2020 18:25:22 +0200 Subject: [PATCH] Bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/main.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb25a7a..cb0e5fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,7 +103,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "jp" -version = "0.3.0" +version = "0.4.0" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonpath_lib 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 1f09c39..c57769d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jp" -version = "0.3.0" +version = "0.4.0" authors = ["Christoph Burgmer "] edition = "2018" license = "Apache-2.0" diff --git a/README.md b/README.md index a06d445..0a7c07d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ See [Howto jp](./HOWTO.md) for an introduction. ## Features $ jp --help - jp 0.3.0 + jp 0.4.0 A simpler jq, and with JSONPath USAGE: diff --git a/src/main.rs b/src/main.rs index 3cb9a44..6fb78e6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,7 +55,7 @@ fn serialize(values: Vec<&Value>, serialization: &Serialization) -> Vec fn config() -> (Serialization, Formatting, bool, String) { let matches = App::new("jp") - .version("0.3.0") + .version("0.4.0") .about("A simpler jq, and with JSONPath") .arg(Arg::with_name("r") .short("r")