diff --git a/gremlin-cli/Cargo.toml b/gremlin-cli/Cargo.toml index d77df400..49bb3a74 100644 --- a/gremlin-cli/Cargo.toml +++ b/gremlin-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gremlin-cli" -version = "0.1.0" +version = "0.1.1" authors = ["wolf4ood "] edition = "2018" license = "Apache-2.0" @@ -13,7 +13,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -gremlin-client = { path = "../gremlin-client", version = "0.8.0", features = ["async-std-runtime"] } +gremlin-client = { path = "../gremlin-client", version = "0.8.6", features = ["async-std-runtime"] } rustyline = "6.2.0" smol = "0.4.3" shellwords = "1.1.0" diff --git a/gremlin-client/CHANGELOG.md b/gremlin-client/CHANGELOG.md index 65e32be8..978142bc 100644 --- a/gremlin-client/CHANGELOG.md +++ b/gremlin-client/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.6](https://github.com/wolf4ood/gremlin-rs/compare/gremlin-client-v0.8.5...gremlin-client-v0.8.6) - 2023-10-19 + +### Fixed +- fix from tungstenite error ([#198](https://github.com/wolf4ood/gremlin-rs/pull/198)) +- fix compilation issue + +### Other +- update tungstenite +- update webpki +- Update rustls requirement from 0.19 to 0.20 in /gremlin-client ([#144](https://github.com/wolf4ood/gremlin-rs/pull/144)) +- Update base64 requirement from 0.13.1 to 0.21.4 in /gremlin-client ([#195](https://github.com/wolf4ood/gremlin-rs/pull/195)) + ### Added ### Fixed diff --git a/gremlin-client/Cargo.toml b/gremlin-client/Cargo.toml index eda2c516..53db0366 100644 --- a/gremlin-client/Cargo.toml +++ b/gremlin-client/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Enrico Risa "] name = "gremlin-client" -version = "0.8.5" +version = "0.8.6" edition = "2018" license = "Apache-2.0" description= "A Rust client for Apache TinkerPop™" diff --git a/gremlin-tutorial/Cargo.toml b/gremlin-tutorial/Cargo.toml index cb8bd1b1..fdde15bf 100644 --- a/gremlin-tutorial/Cargo.toml +++ b/gremlin-tutorial/Cargo.toml @@ -5,4 +5,4 @@ authors = ["wolf4ood "] edition = "2018" [dependencies] -gremlin-client = { path = "../gremlin-client", version = "0.8.0" } +gremlin-client = { path = "../gremlin-client", version = "0.8.6" }