From 7953e6cf498aef8222aa4317310a2c827c34d391 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 12:28:51 +1300 Subject: [PATCH] Stabilize `aws-*` dependencies at `1` (#219) (#220) Signed-off-by: Thomas Farr (cherry picked from commit ec684935963bcba1790c956ff15cda066e3bb2c4) Co-authored-by: Thomas Farr --- CHANGELOG.md | 2 +- opensearch/Cargo.toml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a087bacf..e325c2fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Added ### Dependencies -- Bound `aws-*` dependencies to `<1.0` ([#215](https://github.com/opensearch-project/opensearch-rs/pull/215)) +- Bumps `aws-*` dependencies to `1` ([#219](https://github.com/opensearch-project/opensearch-rs/pull/219)) - Bumps `itertools` from 0.11.0 to 0.12.0 ### Changed diff --git a/opensearch/Cargo.toml b/opensearch/Cargo.toml index 8c7ed1cb..d092d3b2 100644 --- a/opensearch/Cargo.toml +++ b/opensearch/Cargo.toml @@ -40,15 +40,15 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" serde_with = "3" void = "1.0.2" -aws-credential-types = { version = ">= 0.57, <1.0", optional = true } -aws-sigv4 = { version = ">= 0.57, <1.0", optional = true } -aws-smithy-runtime-api = { version = ">= 0.57, <1.0", optional = true, features = ["client"]} -aws-types = { version = ">= 0.57, <1.0", optional = true } +aws-credential-types = { version = "1", optional = true } +aws-sigv4 = { version = "1", optional = true } +aws-smithy-runtime-api = { version = "1", optional = true, features = ["client"]} +aws-types = { version = "1", optional = true } [dev-dependencies] anyhow = "1.0" -aws-config = ">= 0.57, <1.0" -aws-smithy-async = ">= 0.57, <1.0" +aws-config = "1" +aws-smithy-async = "1" chrono = { version = "0.4", features = ["serde"] } clap = "2" futures = "0.3.1"