From 55e8088111b6ab2801c0900d4830fa2c211e3166 Mon Sep 17 00:00:00 2001 From: freestrings Date: Tue, 14 Apr 2020 11:53:34 +0900 Subject: [PATCH] Bump up 0.2.5 --- Cargo.toml | 11 +++++------ README.md | 2 +- wasm/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cd2761d..683b5a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,19 +1,18 @@ [package] name = "jsonpath_lib" -version = "0.2.4" +version = "0.2.5" authors = ["Changseok Han "] description = "It is JsonPath engine written in Rust. it provide a similar API interface in Webassembly and Javascript too. - Webassembly Demo: https://freestrings.github.io/jsonpath" readme = "README.md" -keywords = ["jsonpath", "json", "webassembly", "nodejs", "query"] +keywords = ["jsonpath", "json", "webassembly", "lua", "query"] +categories = ['wasm', "parser-implementations", "api-bindings"] repository = "https://github.com/freestrings/jsonpath" -documentation = "https://docs.rs/jsonpath_lib/0.2.4/jsonpath_lib" +documentation = "https://docs.rs/jsonpath_lib/0.2.5/jsonpath_lib" license = "MIT" -categories = ["parsing"] - [badges] travis-ci = { repository = "freestrings/jsonpath", branch = "master" } @@ -29,6 +28,6 @@ name = "jsonpath_lib" path = "src/lib.rs" crate-type = ["cdylib", "rlib"] -[profile.release] +#[profile.release] #debug = true #lto = false \ No newline at end of file diff --git a/README.md b/README.md index 1e954d6..f8a8191 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![npm](https://img.shields.io/npm/v/jsonpath-wasm.svg?label=npm%20%60jsonpath-wasm%60) ![Codecov](https://img.shields.io/codecov/c/github/freestrings/jsonpath.svg?token=92c41b4e7cf04a9cbebc08f68c5da615) -`Rust` 버전 [JsonPath](https://goessner.net/articles/JsonPath/) 구현이다. `Webassembly`와 `Javascript`에서도 유사한 API 인터페이스를 제공 한다. +`Rust` 버전 [JsonPath](https://goessner.net/articles/JsonPath/) 구현으로 `Webassembly`와 `Javascript`에서도 유사한 API 인터페이스를 제공 한다. It is JsonPath [JsonPath](https://goessner.net/articles/JsonPath/) engine written in `Rust`. it provide a similar API interface in `Webassembly` and` Javascript` too. diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index d8de549..83d297a 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonpath-wasm" -version = "0.2.4" +version = "0.2.5" authors = ["Changseok Han "] description = "It is Webassembly version of jsonpath_lib that is JsonPath engine written in Rust - Demo: https://freestrings.github.io/jsonpath" keywords = ["jsonpath", "json", "webassembly", "parsing", "rust"]