Skip to content

Commit

Permalink
Bumped Kotlin to version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Nov 28, 2024
1 parent fe46c87 commit 6305dd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
java-version: [17, 21, 23]
kotlin-version: [1.9.24, 2.0.21]
kotlin-version: [1.9.24, 2.0.21, 2.1.0]

steps:
- name: Checkout source repository
Expand Down
2 changes: 1 addition & 1 deletion examples/src/bld/java/com/example/ExampleBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public ExampleBuild() {

repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, RIFE2_RELEASES);

final var kotlin = version(2, 0, 21);
final var kotlin = version(2, 1, 0);
scope(compile)
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin));
scope(test)
Expand Down
2 changes: 1 addition & 1 deletion scripts/checkcliargs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ new=/tmp/checkcliargs-new
old=/tmp/checkcliargs-old

kotlinc -h 2>$new
~/.sdkman/candidates/kotlin/2.0.0/bin/kotlinc -h 2>$old
~/.sdkman/candidates/kotlin/2.1.0/bin/kotlinc -h 2>$old

code --diff --wait $old $new

Expand Down

0 comments on commit 6305dd3

Please sign in to comment.