Skip to content

Commit 358b09b

Browse files
committed
update smithy version used in codege
1 parent e53cb43 commit 358b09b

4 files changed

Lines changed: 21 additions & 21 deletions

File tree

tools/code-generation/smithy/codegen/cpp-smoke-tests/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ val logger = Logging.getLogger("MyLogger")
99

1010
plugins {
1111
id("java-library")
12-
id("software.amazon.smithy.gradle.smithy-base").version("1.3.0")
12+
id("software.amazon.smithy.gradle.smithy-base").version("1.4.0")
1313
}
1414

1515
repositories {

tools/code-generation/smithy/codegen/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencyResolutionManagement {
1414
versionCatalogs {
1515
create("codegen") {
1616
// Smithy dependencies
17-
version("smithy", "1.67.0") // Centralize the version for Smithy-related dependencies
17+
version("smithy", "1.70.0") // Centralize the version for Smithy-related dependencies
1818
library("model", "software.amazon.smithy", "smithy-model").versionRef("smithy")
1919
library("aws-traits", "software.amazon.smithy", "smithy-aws-traits").versionRef("smithy")
2020
library("codegen-core", "software.amazon.smithy", "smithy-codegen-core").versionRef("smithy")

tools/code-generation/smithy/cpp-codegen/build.gradle.kts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ val logger = Logging.getLogger("MyLogger")
99

1010
plugins {
1111
id("java-library")
12-
id("software.amazon.smithy.gradle.smithy-base").version("1.3.0")
12+
id("software.amazon.smithy.gradle.smithy-base").version("1.4.0")
1313
}
1414

1515
repositories {
@@ -19,21 +19,21 @@ repositories {
1919

2020
buildscript {
2121
dependencies {
22-
classpath("software.amazon.smithy:smithy-model:1.67.0")
23-
classpath("software.amazon.smithy:smithy-aws-traits:1.67.0")
24-
classpath("software.amazon.smithy:smithy-rules-engine:1.67.0")
22+
classpath("software.amazon.smithy:smithy-model:1.70.0")
23+
classpath("software.amazon.smithy:smithy-aws-traits:1.70.0")
24+
classpath("software.amazon.smithy:smithy-rules-engine:1.70.0")
2525
}
2626
}
2727

2828
dependencies {
2929
implementation(project(":smithy-cpp-codegen"))
30-
implementation("software.amazon.smithy:smithy-aws-traits:1.67.0")
31-
implementation("software.amazon.smithy:smithy-aws-cloudformation-traits:1.67.0")
32-
implementation("software.amazon.smithy:smithy-aws-iam-traits:1.67.0")
33-
implementation("software.amazon.smithy:smithy-aws-endpoints:1.67.0")
34-
implementation("software.amazon.smithy:smithy-smoke-test-traits:1.67.0")
35-
implementation("software.amazon.smithy:smithy-aws-smoke-test-model:1.67.0")
36-
implementation("software.amazon.smithy:smithy-waiters:1.67.0")
30+
implementation("software.amazon.smithy:smithy-aws-traits:1.70.0")
31+
implementation("software.amazon.smithy:smithy-aws-cloudformation-traits:1.70.0")
32+
implementation("software.amazon.smithy:smithy-aws-iam-traits:1.70.0")
33+
implementation("software.amazon.smithy:smithy-aws-endpoints:1.70.0")
34+
implementation("software.amazon.smithy:smithy-smoke-test-traits:1.70.0")
35+
implementation("software.amazon.smithy:smithy-aws-smoke-test-model:1.70.0")
36+
implementation("software.amazon.smithy:smithy-waiters:1.70.0")
3737
}
3838

3939
tasks.register("generate-smithy-build") {

tools/code-generation/smithy/cpp-codegen/smithy-cpp-codegen/build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ repositories {
88
}
99

1010
dependencies {
11-
implementation("software.amazon.smithy:smithy-model:1.67.0")
12-
implementation("software.amazon.smithy:smithy-codegen-core:1.67.0")
13-
implementation("software.amazon.smithy:smithy-aws-traits:1.67.0")
14-
implementation("software.amazon.smithy:smithy-waiters:1.67.0")
15-
implementation("software.amazon.smithy:smithy-jmespath:1.67.0")
16-
implementation("software.amazon.smithy:smithy-rules-engine:1.67.0")
17-
implementation("software.amazon.smithy:smithy-aws-endpoints:1.67.0")
18-
implementation("software.amazon.smithy:smithy-aws-iam-traits:1.67.0")
11+
implementation("software.amazon.smithy:smithy-model:1.70.0")
12+
implementation("software.amazon.smithy:smithy-codegen-core:1.70.0")
13+
implementation("software.amazon.smithy:smithy-aws-traits:1.70.0")
14+
implementation("software.amazon.smithy:smithy-waiters:1.70.0")
15+
implementation("software.amazon.smithy:smithy-jmespath:1.70.0")
16+
implementation("software.amazon.smithy:smithy-rules-engine:1.70.0")
17+
implementation("software.amazon.smithy:smithy-aws-endpoints:1.70.0")
18+
implementation("software.amazon.smithy:smithy-aws-iam-traits:1.70.0")
1919
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
2020
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2")
2121
}

0 commit comments

Comments
 (0)