Unverified Commit 89ad0d3d authored by John DiSanti's avatar John DiSanti Committed by GitHub
Browse files

Normalize runtime crate manifests and apply correct version numbers (#755)

* Rename `protocol-test-helpers` to `smithy-protocol-test-helpers`

* Add missing licenses to runtime crates

* Normalize runtime crate manifests

* Remove unused dependencies

* Make `pretty_assertions` version consistent

* Add repository to generated SDK crate manifests

* Create `smithy-rs-head` crate version tag

* Set correct crate versions when relocating runtimes

* Run version replacement only on Cargo.toml files

* Revise head version number from RFC feedback

* Rename `smithy-protocol-test-helpers` to `smithy-protocol-test`

* Incorporate feedback

* Update changelogs

* Fix rename issues

* Fix EventStreamMarshallerGeneratorTest
parent 95714395
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@ vNext (Month Day, Year)
=======================

- Add `RustSettings` to `CodegenContext` (smithy-rs#616, smithy-rs#752)
- Prepare crate manifests for publishing to crates.io (smithy-rs#755)

v0.25.1 (October 11th, 2021)
=========================
+5 −0
Original line number Diff line number Diff line
vNext (Month Day, Year)
=======================

- Prepare crate manifests for publishing to crates.io (smithy-rs#755)

v0.0.20-alpha (October 7, 2021)
===============================

**Breaking changes**

- :warning: MSRV increased from 1.52.1 to 1.53.0 per our 3-behind MSRV policy.
+4 −3
Original line number Diff line number Diff line
[package]
name = "aws-auth"
version = "0.1.0"
version = "0.0.0-smithy-rs-head"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
license = "Apache-2.0"
description = "AWS auth middleware."
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/awslabs/smithy-rs"

[features]
rt-tokio = ["smithy-async/rt-tokio"]
default = ["rt-tokio"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pin-project = "1"
smithy-async = { path = "../../../rust-runtime/smithy-async", default-features = false }
+4 −2
Original line number Diff line number Diff line
[package]
name = "aws-config"
version = "0.1.0"
version = "0.0.0-smithy-rs-head"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
description = "AWS SDK config and credential provider implementations."
edition = "2018"
exclude = ["test-data/*", "integration-tests/*"]
license = "Apache-2.0"
repository = "https://github.com/awslabs/smithy-rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default-provider = ["profile", "imds", "meta", "sts", "environment"]
profile = ["sts", "web-identity-token", "meta", "environment", "imds"]
Loading