Skip to content

Commit

Permalink
Bound aws-* to code-compatible versions >=0.53,<0.57 (#225)
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia authored Nov 28, 2023
1 parent 9326d05 commit edb021d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

### Security

## [2.1.1]

### Dependencies
- Bound `aws-*` to code-compatible versions `>=0.53,<0.57` ([#225](https://github.com/opensearch-project/opensearch-rs/pull/225))

## [2.1.0]

### Added
Expand Down
2 changes: 1 addition & 1 deletion api_generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "api_generator"
version = "2.1.0"
version = "2.1.1"
publish = false
description = "Generates source code for opensearch package, from the OpenSearch REST API specs"
repository = "https://github.com/opensearch-project/opensearch-rs"
Expand Down
10 changes: 5 additions & 5 deletions opensearch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opensearch"
version = "2.1.0"
version = "2.1.1"
edition = "2018"
authors = ["Elastic and Contributors", "OpenSearch Contributors"]
description = "Official OpenSearch Rust client"
Expand Down Expand Up @@ -40,13 +40,13 @@ serde = { version = "~1", features = ["derive"] }
serde_json = "~1"
serde_with = "~2"
void = "1.0.2"
aws-credential-types = { version = ">= 0.53", optional = true }
aws-sigv4 = { version = ">= 0.53", optional = true }
aws-types = { version = ">= 0.53", optional = true }
aws-credential-types = { version = ">= 0.53, < 0.57", optional = true }
aws-sigv4 = { version = ">= 0.53, < 0.57", optional = true }
aws-types = { version = ">= 0.53, < 0.57", optional = true }

[dev-dependencies]
anyhow = "1.0"
aws-config = ">= 0.53"
aws-config = ">= 0.53, < 0.57"
chrono = { version = "^0.4", features = ["serde"] }
clap = "~2"
futures = "0.3.1"
Expand Down
2 changes: 1 addition & 1 deletion yaml_test_runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yaml_test_runner"
version = "2.1.0"
version = "2.1.1"
publish = false
edition = "2018"
authors = ["Elastic and Contributors", "OpenSearch Contributors"]
Expand Down

0 comments on commit edb021d

Please sign in to comment.