Skip to content

Commit 6a7c47b

Browse files
authored
feat: minor version strategy rules (#1687)
1 parent 504d1af commit 6a7c47b

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Minor version bump check
2+
on:
3+
pull_request:
4+
5+
jobs:
6+
minor-version-bump-check:
7+
permissions: {}
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Minor version bump check
11+
uses: awslabs/aws-kotlin-repo-tools/.github/actions/minor-version-bump@main

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55
import aws.sdk.kotlin.gradle.dsl.configureLinting
6+
import aws.sdk.kotlin.gradle.dsl.configureMinorVersionStrategyRules
67
import aws.sdk.kotlin.gradle.dsl.configureNexus
78
import aws.sdk.kotlin.gradle.util.typedProp
89

@@ -106,3 +107,4 @@ val lintPaths = listOf(
106107
)
107108

108109
configureLinting(lintPaths)
110+
configureMinorVersionStrategyRules(lintPaths)

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ ksp-version = "2.2.0-2.0.2" # Keep in sync with kotlin-version
44

55
dokka-version = "2.0.0"
66

7-
aws-kotlin-repo-tools-version = "0.4.49"
7+
aws-kotlin-repo-tools-version = "0.4.54"
88

99
# libs
1010
coroutines-version = "1.10.2"
1111
atomicfu-version = "0.29.0"
1212
binary-compatibility-validator-version = "0.18.0"
1313

1414
# smithy-kotlin codegen and runtime are versioned separately
15-
smithy-kotlin-runtime-version = "1.5.8"
16-
smithy-kotlin-codegen-version = "0.35.8"
15+
smithy-kotlin-runtime-version = "1.5.10"
16+
smithy-kotlin-codegen-version = "0.35.10"
1717

1818
# codegen
1919
smithy-version = "1.60.2"

0 commit comments

Comments
 (0)