Skip to content

Commit

Permalink
Merge pull request #1719 from iliana/issue-1718
Browse files Browse the repository at this point in the history
v0.43.0; set `package.metadata.docs.rs.targets = []`
  • Loading branch information
iliana committed Mar 16, 2020
2 parents e5c91ba + d44913d commit b24615a
Show file tree
Hide file tree
Showing 444 changed files with 1,763 additions and 1,315 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

(Please put changes here)

## [0.43.0-beta.2] - 2020-03-16
## [0.43.0] - 2020-03-15

- Fix minimum version of hyper
- Fix `PrimitiveDateTime` deprecation error
Expand Down Expand Up @@ -353,8 +353,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.43.0-beta.2...HEAD
[0.43.0-beta.2]: https://github.com/rusoto/rusoto/compare/rusoto-v0.43.0-beta.1...rusoto-v0.43.0-beta.2
[Unreleased]: https://github.com/rusoto/rusoto/compare/rusoto-v0.43.0...HEAD
[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
[0.42.0]: https://github.com/rusoto/rusoto/compare/credentials-v0.41.1...rusoto-v0.42.0
[0.41.1]: https://github.com/rusoto/rusoto/compare/rusoto-v0.41.0...credentials-v0.41.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.43.0-beta.2"
rusoto_sqs = "0.43.0-beta.2"
rusoto_s3 = "0.43.0-beta.2"
rusoto_core = "0.43.0"
rusoto_sqs = "0.43.0"
rusoto_s3 = "0.43.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.43.0-beta.2"
version = "0.43.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.43.0-beta.2"
version = "0.43.0"
authors = [
"Anthony DiMarco <ocramida@gmail.com>",
"Jimmy Cuadra <jimmy@jimmycuadra.com>",
Expand Down
7 changes: 5 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.43.0-beta.2"
version = "0.43.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.43.0-beta.2"
version = "0.43.0"
default_features = false

[features]
Expand All @@ -41,3 +41,6 @@ unstable = []
rustls = ["rusoto_core/rustls"]
native-tls = ["rusoto_core/native-tls"]
default = ["native-tls"]

[package.metadata.docs.rs]
targets = []
9 changes: 6 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.43.0-beta.2"
version = "0.43.0"
homepage = "https://www.rusoto.org/"
exclude = ["test_resources/*"]
edition = "2018"
Expand Down Expand Up @@ -49,11 +49,11 @@ flate2 = { version = "1.0", optional = true }

[dependencies.rusoto_credential]
path = "../credential"
version = "0.43.0-beta.2"
version = "0.43.0"

[dependencies.rusoto_signature]
path = "../signature"
version = "0.43.0-beta.2"
version = "0.43.0"

[dev-dependencies]
tokio = { version = "0.2", features = ["macros"] }
Expand All @@ -69,3 +69,6 @@ nightly-testing = ["rusoto_credential/nightly-testing"]
native-tls = ["hyper-tls"]
rustls = ["hyper-rustls"]
unstable = []

[package.metadata.docs.rs]
targets = []
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.43.0-beta.2"
rusoto_sqs = "0.43.0-beta.2"
rusoto_s3 = "0.43.0-beta.2"
rusoto_core = "0.43.0"
rusoto_sqs = "0.43.0"
rusoto_s3 = "0.43.0"
```

## Migration notes
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.43.0-beta.2", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.43.0-beta.2", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.43.0-beta.2", default_features=false, features=["rustls"] }
rusoto_core = { version="0.43.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.43.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.43.0", default_features=false, features=["rustls"] }
```

### Credentials
Expand Down
5 changes: 4 additions & 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.43.0-beta.2"
version = "0.43.0"
exclude = ["tests/sample-data/*"]
edition = "2018"

Expand Down Expand Up @@ -42,3 +42,6 @@ tempfile = "3.1.0"
[features]
nightly-testing = []
unstable = []

[package.metadata.docs.rs]
targets = []
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.43.0-beta.2"
version = "0.43.0"
authors = ["Matthew Mayer <matthewkmayer@gmail.com>"]
edition = "2018"

Expand Down
8 changes: 5 additions & 3 deletions rusoto/services/accessanalyzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ license = "MIT"
name = "rusoto_accessanalyzer"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.43.0-beta.2"
version = "0.43.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
[package.metadata.docs.rs]
targets = []

[build-dependencies]

Expand All @@ -25,15 +27,15 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.43.0-beta.2"
version = "0.43.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.43.0-beta.2"
version = "0.43.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.43.0-beta.2"
rusoto_accessanalyzer = "0.43.0"
```

## Crate Features
Expand Down
8 changes: 5 additions & 3 deletions rusoto/services/acm-pca/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ license = "MIT"
name = "rusoto_acm_pca"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.43.0-beta.2"
version = "0.43.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
[package.metadata.docs.rs]
targets = []

[build-dependencies]

Expand All @@ -23,7 +25,7 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.43.0-beta.2"
version = "0.43.0"
path = "../../core"
default-features = false

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

[dev-dependencies.rusoto_mock]
version = "0.43.0-beta.2"
version = "0.43.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.43.0-beta.2"
rusoto_acm_pca = "0.43.0"
```

## Crate Features
Expand Down
8 changes: 5 additions & 3 deletions rusoto/services/acm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ license = "MIT"
name = "rusoto_acm"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.43.0-beta.2"
version = "0.43.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
[package.metadata.docs.rs]
targets = []

[build-dependencies]

Expand All @@ -23,7 +25,7 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.43.0-beta.2"
version = "0.43.0"
path = "../../core"
default-features = false

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

[dev-dependencies.rusoto_mock]
version = "0.43.0-beta.2"
version = "0.43.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.43.0-beta.2"
rusoto_acm = "0.43.0"
```

## Crate Features
Expand Down
8 changes: 5 additions & 3 deletions rusoto/services/alexaforbusiness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ license = "MIT"
name = "rusoto_alexaforbusiness"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.43.0-beta.2"
version = "0.43.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
[package.metadata.docs.rs]
targets = []

[build-dependencies]

Expand All @@ -23,7 +25,7 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.43.0-beta.2"
version = "0.43.0"
path = "../../core"
default-features = false

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

[dev-dependencies.rusoto_mock]
version = "0.43.0-beta.2"
version = "0.43.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.43.0-beta.2"
rusoto_alexaforbusiness = "0.43.0"
```

## Crate Features
Expand Down
8 changes: 5 additions & 3 deletions rusoto/services/amplify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ license = "MIT"
name = "rusoto_amplify"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.43.0-beta.2"
version = "0.43.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
[package.metadata.docs.rs]
targets = []

[build-dependencies]

Expand All @@ -25,15 +27,15 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.43.0-beta.2"
version = "0.43.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.43.0-beta.2"
version = "0.43.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.43.0-beta.2"
rusoto_amplify = "0.43.0"
```

## Crate Features
Expand Down
8 changes: 5 additions & 3 deletions rusoto/services/apigateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ license = "MIT"
name = "rusoto_apigateway"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.43.0-beta.2"
version = "0.43.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
[package.metadata.docs.rs]
targets = []

[build-dependencies]

Expand All @@ -25,15 +27,15 @@ serde_json = "1.0"
version = "0.3"

[dependencies.rusoto_core]
version = "0.43.0-beta.2"
version = "0.43.0"
path = "../../core"
default-features = false

[dev-dependencies]
tokio = "0.2"

[dev-dependencies.rusoto_mock]
version = "0.43.0-beta.2"
version = "0.43.0"
path = "../../../mock"
default-features = false

Expand Down

0 comments on commit b24615a

Please sign in to comment.