Skip to content

Commit edb021d

Browse files
authored
Bound aws-* to code-compatible versions >=0.53,<0.57 (#225)
Signed-off-by: Thomas Farr <[email protected]>
1 parent 9326d05 commit edb021d

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1717

1818
### Security
1919

20+
## [2.1.1]
21+
22+
### Dependencies
23+
- Bound `aws-*` to code-compatible versions `>=0.53,<0.57` ([#225](https://github.com/opensearch-project/opensearch-rs/pull/225))
24+
2025
## [2.1.0]
2126

2227
### Added

api_generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "api_generator"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
publish = false
55
description = "Generates source code for opensearch package, from the OpenSearch REST API specs"
66
repository = "https://github.com/opensearch-project/opensearch-rs"

opensearch/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "opensearch"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
edition = "2018"
55
authors = ["Elastic and Contributors", "OpenSearch Contributors"]
66
description = "Official OpenSearch Rust client"
@@ -40,13 +40,13 @@ serde = { version = "~1", features = ["derive"] }
4040
serde_json = "~1"
4141
serde_with = "~2"
4242
void = "1.0.2"
43-
aws-credential-types = { version = ">= 0.53", optional = true }
44-
aws-sigv4 = { version = ">= 0.53", optional = true }
45-
aws-types = { version = ">= 0.53", optional = true }
43+
aws-credential-types = { version = ">= 0.53, < 0.57", optional = true }
44+
aws-sigv4 = { version = ">= 0.53, < 0.57", optional = true }
45+
aws-types = { version = ">= 0.53, < 0.57", optional = true }
4646

4747
[dev-dependencies]
4848
anyhow = "1.0"
49-
aws-config = ">= 0.53"
49+
aws-config = ">= 0.53, < 0.57"
5050
chrono = { version = "^0.4", features = ["serde"] }
5151
clap = "~2"
5252
futures = "0.3.1"

yaml_test_runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yaml_test_runner"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
publish = false
55
edition = "2018"
66
authors = ["Elastic and Contributors", "OpenSearch Contributors"]

0 commit comments

Comments
 (0)