Skip to content

Commit

Permalink
Merge pull request #1447 from rusoto/release-0.40.0
Browse files Browse the repository at this point in the history
Release 0.40.0
  • Loading branch information
matthewkmayer committed Jun 29, 2019
2 parents 214e0a9 + 96af225 commit f82539b
Show file tree
Hide file tree
Showing 312 changed files with 937 additions and 926 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## [Unreleased]

(Please put changes here)

## [0.40.0] - 2019-06-28

- Only emit types used in service during crate generation
- Updated CloudFront to use latest API version: `2018-11-05`
- Only emit crate tests section when needed
- Fix bug with CodePipeline response not containing required fields from AWS
- Moved API documentation links to docs.rs
- Decode IAM policy documents automatically
- Removed `serde_json` crate from services where it was not required
- Exclude `test_resources` in cargo manifest
- upgrades botocore version to from `1.12.156` to `1.12.163`
- (Breaking Change) Fix invalid signatures on presigned URLs by adding a new
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ For example, to include only S3 and SQS:

```toml
[dependencies]
rusoto_core = "0.39.0"
rusoto_sqs = "0.39.0"
rusoto_s3 = "0.39.0"
rusoto_core = "0.40.0"
rusoto_sqs = "0.40.0"
rusoto_s3 = "0.40.0"
```

## Migration notes
Expand Down
2 changes: 1 addition & 1 deletion 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.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
categories = [
"development-tools::testing"
Expand Down
4 changes: 2 additions & 2 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.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
exclude = ["test_resources/*"]
edition = "2018"
Expand Down Expand Up @@ -50,7 +50,7 @@ xml-rs = "0.7"

[dependencies.rusoto_credential]
path = "../credential"
version = "0.39"
version = "0.40"

[dependencies.clippy]
optional = true
Expand Down
12 changes: 6 additions & 6 deletions rusoto/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ For example, to include only S3 and SQS:

``` toml
[dependencies]
rusoto_core = "0.39.0"
rusoto_sqs = "0.39.0"
rusoto_s3 = "0.39.0"
rusoto_core = "0.40.0"
rusoto_sqs = "0.40.0"
rusoto_s3 = "0.40.0"
```

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

``` toml
[dependencies]
rusoto_core = { version="0.39.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.39.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.39.0", default_features=false, features=["rustls"] }
rusoto_core = { version="0.40.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.40.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.40.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.39.0"
version = "0.40.0"
exclude = ["tests/sample-data/*"]
edition = "2018"

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.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

[features]
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.39.0"
rusoto_acm_pca = "0.40.0"
```

## Contributing
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.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

[features]
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.39.0"
rusoto_acm = "0.40.0"
```

## Contributing
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.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

[features]
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.39.0"
rusoto_alexaforbusiness = "0.40.0"
```

## Contributing
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.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

[features]
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.39.0"
rusoto_amplify = "0.40.0"
```

## Contributing
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.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

[features]
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.39.0"
rusoto_apigateway = "0.40.0"
```

## Contributing
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.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -21,11 +21,11 @@ serde = "1.0.2"
serde_derive = "1.0.2"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

[features]
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.39.0"
rusoto_apigatewaymanagementapi = "0.40.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/apigatewayv2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_apigatewayv2"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

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

```toml
[dependencies]
rusoto_apigatewayv2 = "0.39.0"
rusoto_apigatewayv2 = "0.40.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/application-autoscaling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_application_autoscaling"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

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

```toml
[dependencies]
rusoto_application_autoscaling = "0.39.0"
rusoto_application_autoscaling = "0.40.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/appstream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_appstream"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.39.0"
version = "0.40.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.39.0"
version = "0.40.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.39.0"
version = "0.40.0"
path = "../../../mock"

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

```toml
[dependencies]
rusoto_appstream = "0.39.0"
rusoto_appstream = "0.40.0"
```

## Contributing
Expand Down

0 comments on commit f82539b

Please sign in to comment.