Skip to content

Commit 82d0ca7

Browse files
authored
docs: rename awslabs/smithy-kotlin to smithy-lang/smithy-kotlin (#1472)
1 parent ca56d59 commit 82d0ca7

File tree

7 files changed

+57
-57
lines changed

7 files changed

+57
-57
lines changed

CHANGELOG.md

Lines changed: 48 additions & 48 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ AWS service clients are generated from [Smithy](https://awslabs.github.io/smithy
1616
As such the code in `aws-sdk-kotlin` is a layer on top of generic Smithy based code generation tooling.
1717

1818

19-
2. Smithy Kotlin Codegen repo ([awslabs/smithy-kotlin](https://github.com/awslabs/smithy-kotlin))
19+
2. Smithy Kotlin Codegen repo ([smithy-lang/smithy-kotlin](https://github.com/smithy-lang/smithy-kotlin))
2020

2121
The `smithy-kotlin` repository contains the generic Smithy code generation tools for Kotlin.
2222

23-
If you want to contribute by diving into the codegen machinery and helping develop the SDK please refer to the [contributing guide](https://github.com/awslabs/smithy-kotlin/blob/main/CONTRIBUTING.md) in that repo.
23+
If you want to contribute by diving into the codegen machinery and helping develop the SDK please refer to the [contributing guide](https://github.com/smithy-lang/smithy-kotlin/blob/main/CONTRIBUTING.md) in that repo.
2424

2525

2626
## Reporting Bugs/Feature Requests
@@ -78,7 +78,7 @@ following fields:
7878
| `id` | `string` | yes | | A unique identifier for this entry. We recommend you generate a UUID for this field. |
7979
| `type` | `string` | yes | `bugfix`, `feature`, `documentation`, `misc` | The type of change being made. |
8080
| `description` | `string` | yes | | A description of the change being made.<ul><li>Prefix with `**Breaking**:` if the change is breaking</li><li>Use the imperative present tense (e.g., "change" not "changed" nor "changes")</li><li>Capitalize first letter</li><li>No dot (.) at the end unless there are multiple sentences</li></ul> |
81-
| `issues` | `string[]` | no | | A list of references to any related issues in the relevant repositories. A reference can be specified in several ways:<ul><li>The issue number, if local to this repository (eg. `#12345`)</li><li>A fully-qualified issue ID (eg.`awslabs/smithy-kotlin#12345`)</li><li>A fully-qualified URL (eg. `https://issuetracker.com/12345`)</li></ul> |
81+
| `issues` | `string[]` | no | | A list of references to any related issues in the relevant repositories. A reference can be specified in several ways:<ul><li>The issue number, if local to this repository (eg. `#12345`)</li><li>A fully-qualified issue ID (eg.`smithy-lang/smithy-kotlin#12345`)</li><li>A fully-qualified URL (eg. `https://issuetracker.com/12345`)</li></ul> |
8282
| `module` | `string` | no | | The area of the code affected by your changes. If unsure, leave this value unset. |
8383
| `requiresMinorVersionBump` | `boolean` | no | | Indicates the change will require a new minor version. This is usually the case after a breaking change. Defaults to false if flag is not included. |
8484

aws-runtime/aws-http/common/src/aws/sdk/kotlin/runtime/http/middleware/UserAgent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class UserAgent(
4444

4545
// NOTE: Due to legacy issues with processing the user agent, the original content for
4646
// x-amz-user-agent and User-Agent is swapped here. See top note in the
47-
// sdk-user-agent-header SEP and https://github.com/awslabs/smithy-kotlin/issues/373
47+
// sdk-user-agent-header SEP and https://github.com/smithy-lang/smithy-kotlin/issues/373
4848
// for further details.
4949
req.subject.headers[USER_AGENT] = requestMetadata.xAmzUserAgent
5050
req.subject.headers[X_AMZ_USER_AGENT] = requestMetadata.userAgent

docs/design/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AWS SDK Kotlin designs
22

3-
The following design documents informed the creation of the AWS SDK for Kotlin. They specific to the AWS SDK which is built using [**smithy-kotlin**](https://github.com/awslabs/smithy-kotlin). As such, they may extend or augment the [Smithy Kotlin Designs](https://github.com/awslabs/smithy-kotlin/blob/main/docs/design/README.md).
3+
The following design documents informed the creation of the AWS SDK for Kotlin. They specific to the AWS SDK which is built using [**smithy-kotlin**](https://github.com/smithy-lang/smithy-kotlin). As such, they may extend or augment the [Smithy Kotlin Designs](https://github.com/smithy-lang/smithy-kotlin/blob/main/docs/design/README.md).
44

55
These designs are written according to the [AWS SDK for Koltin Design Tenets](tenets.md).
66

docs/design/retries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
# Abstract
77

88
The AWS SDK for Kotlin uses a specialization of the generalized
9-
[**smithy-kotlin** Retry Design](https://github.com/awslabs/smithy-kotlin/blob/main/docs/design/retries.md). This
9+
[**smithy-kotlin** Retry Design](https://github.com/smithy-lang/smithy-kotlin/blob/main/docs/design/retries.md). This
1010
document covers those specializations (but does not re-hash the generalized design).
1111

1212
# SDK implementation
1313

1414
The SDK uses the following customizations/specializations over the generalized
15-
[**smithy-kotlin** Retry Design](https://github.com/awslabs/smithy-kotlin/blob/main/docs/design/retries.md):
15+
[**smithy-kotlin** Retry Design](https://github.com/smithy-lang/smithy-kotlin/blob/main/docs/design/retries.md):
1616

1717
## Retry policy
1818

docs/howto/configuring/http-clients.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
By default, the AWS SDK for Kotlin uses an HTTP client from OkHttp. Customers may choose to override the default HTTP
44
client by specifying an existing
5-
[HttpClientEngine](https://github.com/awslabs/smithy-kotlin/blob/main/runtime/protocol/http/common/src/aws/smithy/kotlin/runtime/http/engine/HttpClientEngine.kt)
5+
[HttpClientEngine](https://github.com/smithy-lang/smithy-kotlin/blob/main/runtime/protocol/http/common/src/aws/smithy/kotlin/runtime/http/engine/HttpClientEngine.kt)
66
implementation or implementing their own and referencing that implementation in the service client configuration at the
77
time of client construction.
88

services/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ subprojects {
135135
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
136136
compilerOptions {
137137
allWarningsAsErrors.set(false) // FIXME Tons of errors occur in generated code
138-
jvmTarget.set(JvmTarget.JVM_1_8) // fixes outgoing variant metadata: https://github.com/awslabs/smithy-kotlin/issues/258
138+
jvmTarget.set(JvmTarget.JVM_1_8) // fixes outgoing variant metadata: https://github.com/smithy-lang/smithy-kotlin/issues/258
139139
}
140140
}
141141

0 commit comments

Comments
 (0)