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

Independently version all runtime crates (#3448)

This will make all the runtime crates independently versioned, which
will later remove the need for version number properties in the
gradle.properties file. A full release cycle should be done before
cleaning up the old logic just to be safe though.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
parent 557e4b39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-config"
version = "0.0.0-smithy-rs-head"
version = "1.1.8"
authors = [
    "AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
    "Russell Cohen <rcoh@amazon.com>",
+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-credential-types"
version = "0.0.0-smithy-rs-head"
version = "1.1.8"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
description = "Types for AWS SDK credentials."
edition = "2021"
+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-inlineable"
version = "0.0.0-smithy-rs-head"
version = "0.1.0"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
description = """
The modules of this crate are intended to be inlined directly into the SDK as needed. The dependencies here
+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-runtime-api"
version = "0.0.0-smithy-rs-head"
version = "1.1.8"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
description = "Runtime support code for the AWS SDK. This isn't intended to be used directly."
edition = "2021"
+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-runtime"
version = "0.0.0-smithy-rs-head"
version = "1.1.8"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
description = "Runtime support code for the AWS SDK. This crate isn't intended to be used directly."
edition = "2021"
Loading