Skip to content

Commit

Permalink
Merge pull request #1793 from iliana/v0.45
Browse files Browse the repository at this point in the history
Release 0.45.0
  • Loading branch information
iliana committed Jul 22, 2020
2 parents 799f4be + ebb3c30 commit b07b24f
Show file tree
Hide file tree
Showing 443 changed files with 1,319 additions and 1,314 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

(Please put changes here)

## [0.45.0] - 2020-07-22

- Add event-stream protocol support (currently only for JSON APIs, used in `subscribe_to_shard` call in Kinesis)
- Extract common generated code into utility functions to improve compile times
- Allow creating a ProfileProvider with only the profile
Expand Down Expand Up @@ -377,7 +381,8 @@ such as an S3 key returned in `list_objects_v2`
- Type aliases removed. Example: we no longer use `BucketName` which was an alias for `String`.
- travis-cargo from TravisCI builds

[Unreleased]: https://github.com/rusoto/rusoto/compare/rusoto-v0.44.0...HEAD
[Unreleased]: https://github.com/rusoto/rusoto/compare/rusoto-v0.45.0...HEAD
[0.45.0]: https://github.com/rusoto/rusoto/compare/rusoto-v0.44.0...rusoto-v0.45.0
[0.44.0]: https://github.com/rusoto/rusoto/compare/rusoto-v0.43.0...rusoto-v0.44.0
[0.43.0]: https://github.com/rusoto/rusoto/compare/rusoto-v0.43.0-beta.1...rusoto-v0.43.0
[0.43.0-beta.1]: https://github.com/rusoto/rusoto/compare/rusoto-v0.42.0...rusoto-v0.43.0-beta.1
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ For example, to include only S3 and SQS:

```toml
[dependencies]
rusoto_core = "0.44.0"
rusoto_sqs = "0.44.0"
rusoto_s3 = "0.44.0"
rusoto_core = "0.45.0"
rusoto_sqs = "0.45.0"
rusoto_s3 = "0.45.0"
```

## Migration notes
Expand Down
2 changes: 1 addition & 1 deletion helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ license = "MIT"
name = "rusoto_helpers"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto_helpers"
version = "0.44.0"
version = "0.45.0"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rusoto_tests"
description = "AWS SDK for Rust - Integration Tests"
version = "0.44.0"
version = "0.45.0"
authors = [
"Anthony DiMarco <ocramida@gmail.com>",
"Jimmy Cuadra <jimmy@jimmycuadra.com>",
Expand Down
4 changes: 2 additions & 2 deletions mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["AWS", "Amazon", "mock", "testing"]
license = "MIT"
name = "rusoto_mock"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
categories = [
"development-tools::testing"
Expand All @@ -32,7 +32,7 @@ serde_json = "1.0"

[dependencies.rusoto_core]
path = "../rusoto/core"
version = "0.44.0"
version = "0.45.0"
default_features = false

[features]
Expand Down
6 changes: 3 additions & 3 deletions rusoto/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ license = "MIT"
name = "rusoto_core"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
exclude = ["test_resources/*"]
edition = "2018"
Expand Down Expand Up @@ -48,11 +48,11 @@ flate2 = { version = "1.0", optional = true }

[dependencies.rusoto_credential]
path = "../credential"
version = "0.44.0"
version = "0.45.0"

[dependencies.rusoto_signature]
path = "../signature"
version = "0.44.0"
version = "0.45.0"

[dev-dependencies]
tokio = { version = "0.2", features = ["macros"] }
Expand Down
14 changes: 7 additions & 7 deletions rusoto/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ For example, to include only S3 and SQS:

``` toml
[dependencies]
rusoto_core = "0.44.0"
rusoto_sqs = "0.44.0"
rusoto_s3 = "0.44.0"
rusoto_core = "0.45.0"
rusoto_sqs = "0.45.0"
rusoto_s3 = "0.45.0"
```

## Migration notes

Breaking changes and migration details are documented at [https://rusoto.org/migrations.html](https://rusoto.org/migrations.html).

Note that from v0.44.0 onward, Rusoto uses Rust's `std::future::Future`, and the Tokio 0.2 ecosystem.
Note that from v0.43.0 onward, Rusoto uses Rust's `std::future::Future`, and the Tokio 0.2 ecosystem.

## Usage

Expand Down Expand Up @@ -91,9 +91,9 @@ If you do not want to use OpenSSL, you can replace it with rustls by editing you

``` toml
[dependencies]
rusoto_core = { version="0.44.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.44.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.44.0", default_features=false, features=["rustls"] }
rusoto_core = { version="0.45.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.45.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.45.0", default_features=false, features=["rustls"] }
```

### Credentials
Expand Down
2 changes: 1 addition & 1 deletion rusoto/credential/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation = "https://docs.rs/rusoto_credential"
name = "rusoto_credential"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
exclude = ["tests/sample-data/*"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion rusoto/credential_service_mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "credential_service_mock"
version = "0.44.0"
version = "0.45.0"
authors = ["Matthew Mayer <matthewkmayer@gmail.com>"]
edition = "2018"

Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/accessanalyzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_accessanalyzer"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -27,15 +27,15 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.44.0"
version = "0.45.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.44.0"
version = "0.45.0"
path = "../../../mock"
default-features = false

Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/accessanalyzer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_accessanalyzer` in your application, add it as a dependency in yo

```toml
[dependencies]
rusoto_accessanalyzer = "0.44.0"
rusoto_accessanalyzer = "0.45.0"
```

## Crate Features
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/acm-pca/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_acm_pca"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -25,7 +25,7 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.44.0"
version = "0.45.0"
path = "../../core"
default-features = false

Expand All @@ -37,7 +37,7 @@ features = ["derive"]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.44.0"
version = "0.45.0"
path = "../../../mock"
default-features = false

Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/acm-pca/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_acm_pca` in your application, add it as a dependency in your `Car

```toml
[dependencies]
rusoto_acm_pca = "0.44.0"
rusoto_acm_pca = "0.45.0"
```

## Crate Features
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/acm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_acm"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -25,7 +25,7 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.44.0"
version = "0.45.0"
path = "../../core"
default-features = false

Expand All @@ -37,7 +37,7 @@ features = ["derive"]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.44.0"
version = "0.45.0"
path = "../../../mock"
default-features = false

Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/acm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_acm` in your application, add it as a dependency in your `Cargo.t

```toml
[dependencies]
rusoto_acm = "0.44.0"
rusoto_acm = "0.45.0"
```

## Crate Features
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/alexaforbusiness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_alexaforbusiness"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -25,7 +25,7 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.44.0"
version = "0.45.0"
path = "../../core"
default-features = false

Expand All @@ -37,7 +37,7 @@ features = ["derive"]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.44.0"
version = "0.45.0"
path = "../../../mock"
default-features = false

Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/alexaforbusiness/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_alexaforbusiness` in your application, add it as a dependency in

```toml
[dependencies]
rusoto_alexaforbusiness = "0.44.0"
rusoto_alexaforbusiness = "0.45.0"
```

## Crate Features
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/amplify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_amplify"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -27,15 +27,15 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.44.0"
version = "0.45.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.44.0"
version = "0.45.0"
path = "../../../mock"
default-features = false

Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/amplify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_amplify` in your application, add it as a dependency in your `Car

```toml
[dependencies]
rusoto_amplify = "0.44.0"
rusoto_amplify = "0.45.0"
```

## Crate Features
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/apigateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_apigateway"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -27,15 +27,15 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.44.0"
version = "0.45.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.44.0"
version = "0.45.0"
path = "../../../mock"
default-features = false

Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/apigateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_apigateway` in your application, add it as a dependency in your `

```toml
[dependencies]
rusoto_apigateway = "0.44.0"
rusoto_apigateway = "0.45.0"
```

## Crate Features
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/apigatewaymanagementapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_apigatewaymanagementapi"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.44.0"
version = "0.45.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -26,15 +26,15 @@ serde_derive = "1.0.2"
version = "0.3"

[dependencies.rusoto_core]
version = "0.44.0"
version = "0.45.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.44.0"
version = "0.45.0"
path = "../../../mock"
default-features = false

Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/apigatewaymanagementapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_apigatewaymanagementapi` in your application, add it as a depende

```toml
[dependencies]
rusoto_apigatewaymanagementapi = "0.44.0"
rusoto_apigatewaymanagementapi = "0.45.0"
```

## Crate Features
Expand Down

0 comments on commit b07b24f

Please sign in to comment.