Skip to content

Commit dbc5278

Browse files

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## <img src="/ktoml.png" width="300px"/>
1+
## <img src="/ktoml.png" width="300px"/>
22

33
[![Releases](https://img.shields.io/github/v/release/akuleshov7/ktoml)](https://github.com/orchestr7/ktoml/releases)
44
[![Maven Central](https://img.shields.io/maven-central/v/com.akuleshov7/ktoml-core)](https://search.maven.org/artifact/com.akuleshov7/ktoml-core/)
@@ -44,7 +44,7 @@ However, to reduce the scope, ktoml now supports only the following platforms:
4444

4545
Other platforms could be added later on the demand (just create a corresponding issue) or easily built by users on their machines.
4646

47-
:globe_with_meridians: ktoml supports Kotlin 1.9.22
47+
:globe_with_meridians: ktoml supports Kotlin 2.2.0
4848

4949
## Current limitations
5050
:heavy_exclamation_mark: Please note, that TOML standard does not define Java-like types: `Char`, `Short`, etc.
@@ -91,12 +91,12 @@ To import `ktoml` library you need to add following dependencies to your code:
9191
<dependency>
9292
<groupId>com.akuleshov7</groupId>
9393
<artifactId>ktoml-core</artifactId>
94-
<version>0.7.0</version>
94+
<version>0.7.1</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>com.akuleshov7</groupId>
9898
<artifactId>ktoml-file</artifactId>
99-
<version>0.7.0</version>
99+
<version>0.7.1</version>
100100
</dependency>
101101
```
102102
</details>
@@ -105,17 +105,17 @@ To import `ktoml` library you need to add following dependencies to your code:
105105
<summary>Gradle Groovy</summary>
106106

107107
```groovy
108-
implementation 'com.akuleshov7:ktoml-core:0.7.0'
109-
implementation 'com.akuleshov7:ktoml-file:0.7.0'
108+
implementation 'com.akuleshov7:ktoml-core:0.7.1'
109+
implementation 'com.akuleshov7:ktoml-file:0.7.1'
110110
```
111111
</details>
112112

113113
<details>
114114
<summary>Gradle Kotlin</summary>
115115

116116
```kotlin
117-
implementation("com.akuleshov7:ktoml-core:0.7.0")
118-
implementation("com.akuleshov7:ktoml-file:0.7.0")
117+
implementation("com.akuleshov7:ktoml-core:0.7.1")
118+
implementation("com.akuleshov7:ktoml-file:0.7.1")
119119
```
120120
</details>
121121

gradle/plugins/src/main/kotlin/com/akuleshov7/buildutils/PublishingConfiguration.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ internal fun Project.configureNexusPublishing() {
127127
configure<NexusPublishExtension> {
128128
repositories {
129129
sonatype {
130-
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
131-
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
130+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
131+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
132132
username.set(property("sonatypeUsername") as String)
133133
password.set(property("sonatypePassword") as String)
134134
}

0 commit comments

Comments
 (0)