From d1c4b1ae4074aa59d0ae88eabc54791d99728d53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:50:45 +0000 Subject: [PATCH] chore(gremlin-client): release v0.8.11 --- gremlin-cli/Cargo.toml | 2 +- gremlin-client/CHANGELOG.md | 6 ++++++ gremlin-client/Cargo.toml | 2 +- gremlin-tutorial/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gremlin-cli/Cargo.toml b/gremlin-cli/Cargo.toml index 9836facf..f5e25274 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.10", features = ["async-std-runtime"] } +gremlin-client = { path = "../gremlin-client", version = "0.8.11", 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 9d5394ed..77d80c10 100644 --- a/gremlin-client/CHANGELOG.md +++ b/gremlin-client/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.11](https://github.com/wolf4ood/gremlin-rs/compare/v0.8.10...v0.8.11) - 2024-10-16 + +### Other + +- MergeV, MergeE, & Option Steps ([#214](https://github.com/wolf4ood/gremlin-rs/pull/214)) + ## [0.8.10](https://github.com/wolf4ood/gremlin-rs/compare/v0.8.9...v0.8.10) - 2024-05-13 ### Other diff --git a/gremlin-client/Cargo.toml b/gremlin-client/Cargo.toml index e3b6dfa4..f66626e4 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.10" +version = "0.8.11" 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 9d1b96d8..9dccbb10 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.10" } +gremlin-client = { path = "../gremlin-client", version = "0.8.11" }