8000 Update Kotlin to 2.1.20 by Shpota · Pull Request #137 · sol4k/sol4k · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update Kotlin to 2.1.20 #137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id 'org.jetbrains.kotlin.jvm' version '2.1.10'
id 'org.jetbrains.kotlin.jvm' version '2.1.20'
id 'org.jetbrains.dokka' version '2.0.0'
id 'com.vanniktech.maven.publish' version '0.30.0'
id 'org.jetbrains.kotlin.plugin.serialization' version '2.1.10'
id 'com.vanniktech.maven.publish' version '0.31.0'
id 'org.jetbrains.kotlin.plugin.serialization' version '2.1.20'
id 'org.jlleitschuh.gradle.ktlint' version '12.2.0'
}

Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ experience smooth and straightforward.

Gradle:
```groovy
implementation 'org.sol4k:sol4k:0.5.10'
implementation 'org.sol4k:sol4k:0.5.11'
```

Maven:
```xml
<dependency>
<groupId>org.sol4k</groupId>
<artifactId>sol4k</artifactId>
<version>0.5.10</version>
<version>0.5.11</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions docs/README_JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Sol4kは、Javaや他のJVM言語、Androidでも使用できるSolana用のKotl

Gradle:
```groovy
implementation 'org.sol4k:sol4k:0.5.10'
implementation 'org.sol4k:sol4k:0.5.11'
```

Maven:
```xml
<dependency>
<groupId>org.sol4k</groupId>
<artifactId>sol4k</artifactId>
<version>0.5.10</version>
<version>0.5.11</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions docs/README_KR.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Sol4k는 Java 또는 다른 JVM 언어뿐만 아니라 Android에서도 사용

Gradle:
```groovy
implementation 'org.sol4k:sol4k:0.5.10'
implementation 'org.sol4k:sol4k:0.5.11'
```

Maven:
```xml
<dependency>
<groupId>org.sol4k</groupId>
<artifactId>sol4k</artifactId>
<version>0.5.10</version>
<version>0.5.11</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions docs/README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Sol4k 是 Solana 的 Kotlin 客户端,可与 Java 或任何其他 JVM 语言
Gradle:

```groovy
implementation 'org.sol4k:sol4k:0.5.10'
implementation 'org.sol4k:sol4k:0.5.11'
```

Maven:
Expand All @@ -18,7 +18,7 @@ Maven:
<dependency>
<groupId>org.sol4k</groupId>
<artifactId>sol4k</artifactId>
<version>0.5.10</version>
<version>0.5.11</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlin.code.style=official
currentVersion=0.5.10
currentVersion=0.5.11
0