diff --git a/gremlin-cli/Cargo.toml b/gremlin-cli/Cargo.toml index 13025911..1df83a7c 100644 --- a/gremlin-cli/Cargo.toml +++ b/gremlin-cli/Cargo.toml @@ -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.8", features = ["async-std-runtime"] } +gremlin-client = { path = "../gremlin-client", version = "0.8.9", 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 4ded096d..99b37f6f 100644 --- a/gremlin-client/CHANGELOG.md +++ b/gremlin-client/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.9](https://github.com/wolf4ood/gremlin-rs/compare/v0.8.8...v0.8.9) - 2024-04-24 + +### Other +- Map explicitly null response status message to empty string ([#210](https://github.com/wolf4ood/gremlin-rs/pull/210)) + ## [0.8.8](https://github.com/wolf4ood/gremlin-rs/compare/v0.8.7...v0.8.8) - 2024-04-19 ### Other diff --git a/gremlin-client/Cargo.toml b/gremlin-client/Cargo.toml index d136fd2b..2a88e772 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.8" +version = "0.8.9" 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 17471577..e3e6b103 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.8" } +gremlin-client = { path = "../gremlin-client", version = "0.8.9" }