Skip to content

Commit

Permalink
Release 0.47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benesch committed Jun 30, 2021
1 parent 34d87e9 commit 8dcf90c
Show file tree
Hide file tree
Showing 442 changed files with 1,747 additions and 1,742 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.47.0] - 2021-06-29

- Update to botocore 1.20.102
- Update to `serde_urlencoded` 0.7
- Update to `rustc_version` 0.4
Expand Down Expand Up @@ -412,7 +416,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.46.0...HEAD
[Unreleased]: https://github.com/rusoto/rusoto/compare/rusoto-v0.47.0...HEAD
[0.47.0]: https://github.com/rusoto/rusoto/compare/rusoto-v0.46.0...rusoto-v0.47.0
[0.46.0]: https://github.com/rusoto/rusoto/compare/rusoto-v0.45.0...rusoto-v0.46.0
[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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ For example, to include only S3 and SQS:

```toml
[dependencies]
rusoto_core = "0.46.0"
rusoto_sqs = "0.46.0"
rusoto_s3 = "0.46.0"
rusoto_core = "0.47.0"
rusoto_sqs = "0.47.0"
rusoto_s3 = "0.47.0"
```

## Migration notes
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.46.0"
version = "0.47.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.46.0"
version = "0.47.0"
homepage = "https://www.rusoto.org/"
categories = [
"development-tools::testing"
Expand All @@ -28,7 +28,7 @@ serde_json = "1.0"

[dependencies.rusoto_core]
path = "../rusoto/core"
version = "0.46.0"
version = "0.47.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.46.0"
version = "0.47.0"
homepage = "https://www.rusoto.org/"
exclude = ["test_resources/*"]
edition = "2018"
Expand Down Expand Up @@ -41,11 +41,11 @@ flate2 = { version = "1.0", optional = true }

[dependencies.rusoto_credential]
path = "../credential"
version = "0.46.0"
version = "0.47.0"

[dependencies.rusoto_signature]
path = "../signature"
version = "0.46.0"
version = "0.47.0"

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

``` toml
[dependencies]
rusoto_core = "0.46.0"
rusoto_sqs = "0.46.0"
rusoto_s3 = "0.46.0"
rusoto_core = "0.47.0"
rusoto_sqs = "0.47.0"
rusoto_s3 = "0.47.0"
```

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

``` toml
[dependencies]
rusoto_core = { version="0.46.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.46.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.46.0", default_features=false, features=["rustls"] }
rusoto_core = { version="0.47.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.47.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.47.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.46.0"
version = "0.47.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.46.0"
version = "0.47.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.46.0"
version = "0.47.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.46.0"
version = "0.47.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "1.0"

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

Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/accessanalyzer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Rusoto AccessAnalyzer
Rust SDK for Access Analyzer

<a href="https://docs.rs/rusoto_accessanalyzer/0.46.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_accessanalyzer/0.46.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="https://docs.rs/rusoto_accessanalyzer/0.47.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_accessanalyzer/0.47.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="#license" title="License: MIT"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="license-badge"></img></a>
<a href="https://discordapp.com/invite/WMJ4DWp"><img src="https://img.shields.io/discord/670751965273391124"></img></a>

Expand All @@ -28,7 +28,7 @@ To use `rusoto_accessanalyzer` in your application, add it as a dependency in yo

```toml
[dependencies]
rusoto_accessanalyzer = "0.46.0"
rusoto_accessanalyzer = "0.47.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.46.0"
version = "0.47.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.46.0"
version = "0.47.0"
path = "../../core"
default-features = false

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

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

Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/acm-pca/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Rusoto AcmPca
Rust SDK for AWS Certificate Manager Private Certificate Authority

<a href="https://docs.rs/rusoto_acm_pca/0.46.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_acm_pca/0.46.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="https://docs.rs/rusoto_acm_pca/0.47.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_acm_pca/0.47.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="#license" title="License: MIT"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="license-badge"></img></a>
<a href="https://discordapp.com/invite/WMJ4DWp"><img src="https://img.shields.io/discord/670751965273391124"></img></a>

Expand All @@ -28,7 +28,7 @@ To use `rusoto_acm_pca` in your application, add it as a dependency in your `Car

```toml
[dependencies]
rusoto_acm_pca = "0.46.0"
rusoto_acm_pca = "0.47.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.46.0"
version = "0.47.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.46.0"
version = "0.47.0"
path = "../../core"
default-features = false

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

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

Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/acm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Rusoto Acm
Rust SDK for AWS Certificate Manager

<a href="https://docs.rs/rusoto_acm/0.46.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_acm/0.46.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="https://docs.rs/rusoto_acm/0.47.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_acm/0.47.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="#license" title="License: MIT"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="license-badge"></img></a>
<a href="https://discordapp.com/invite/WMJ4DWp"><img src="https://img.shields.io/discord/670751965273391124"></img></a>

Expand All @@ -28,7 +28,7 @@ To use `rusoto_acm` in your application, add it as a dependency in your `Cargo.t

```toml
[dependencies]
rusoto_acm = "0.46.0"
rusoto_acm = "0.47.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.46.0"
version = "0.47.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.46.0"
version = "0.47.0"
path = "../../core"
default-features = false

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

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

Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/alexaforbusiness/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Rusoto AlexaForBusiness
Rust SDK for Alexa For Business

<a href="https://docs.rs/rusoto_alexaforbusiness/0.46.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_alexaforbusiness/0.46.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="https://docs.rs/rusoto_alexaforbusiness/0.47.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_alexaforbusiness/0.47.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="#license" title="License: MIT"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="license-badge"></img></a>
<a href="https://discordapp.com/invite/WMJ4DWp"><img src="https://img.shields.io/discord/670751965273391124"></img></a>

Expand All @@ -28,7 +28,7 @@ To use `rusoto_alexaforbusiness` in your application, add it as a dependency in

```toml
[dependencies]
rusoto_alexaforbusiness = "0.46.0"
rusoto_alexaforbusiness = "0.47.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.46.0"
version = "0.47.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.46.0"
version = "0.47.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "1.0"

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

Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/amplify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Rusoto Amplify
Rust SDK for AWS Amplify

<a href="https://docs.rs/rusoto_amplify/0.46.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_amplify/0.46.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="https://docs.rs/rusoto_amplify/0.47.0" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
<a href="https://crates.io/crates/rusoto_amplify/0.47.0" title="Crates.io"><img src="https://img.shields.io/crates/v/rusoto_core.svg" alt="crates-io"></img></a>
<a href="#license" title="License: MIT"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="license-badge"></img></a>
<a href="https://discordapp.com/invite/WMJ4DWp"><img src="https://img.shields.io/discord/670751965273391124"></img></a>

Expand All @@ -28,7 +28,7 @@ To use `rusoto_amplify` in your application, add it as a dependency in your `Car

```toml
[dependencies]
rusoto_amplify = "0.46.0"
rusoto_amplify = "0.47.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.46.0"
version = "0.47.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.46.0"
version = "0.47.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "1.0"

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

Expand Down

0 comments on commit 8dcf90c

Please sign in to comment.