Skip to content

Commit aeb0b9b

Browse files
committed
<release> v2.2.1
1 parent 42fff80 commit aeb0b9b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
val sharedGroup = "com.kgit2"
13-
val sharedVersion = "2.2.0"
13+
val sharedVersion = "2.2.1"
1414

1515
group = sharedGroup
1616
version = sharedVersion
@@ -64,10 +64,10 @@ kotlin {
6464
sourceSets {
6565
// add opt-in
6666
all {
67-
languageSettings.optIn("kotlinx.cinterop.UnsafeNumber")
67+
// languageSettings.optIn("kotlinx.cinterop.UnsafeNumber")
6868
languageSettings.optIn("kotlinx.cinterop.ExperimentalForeignApi")
6969
languageSettings.optIn("kotlin.experimental.ExperimentalNativeApi")
70-
languageSettings.optIn("kotlin.native.runtime.NativeRuntimeApi")
70+
// languageSettings.optIn("kotlin.native.runtime.NativeRuntimeApi")
7171
languageSettings.optIn("kotlin.ExperimentalStdlibApi")
7272

7373
languageSettings {
@@ -123,8 +123,8 @@ if (ossrhUsername != null && ossrhPassword != null) {
123123
nexusPublishing {
124124
repositories {
125125
sonatype {
126-
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
127-
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
126+
nexusUrl.set(uri(releasesRepoUrl))
127+
snapshotRepositoryUrl.set(uri(snapshotsRepoUrl))
128128
username.set(ossrhUsername)
129129
password.set(ossrhPassword)
130130
}

secret.gpg

Whitespace-only changes.

src/nativeMain/kotlin/com/kgit2/kommand/Extension.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import kotlinx.cinterop.memScoped
1616
import kotlinx.cinterop.pointed
1717
import kotlinx.cinterop.toKString
1818

19-
inline fun CPointer<ByteVar>.asString(): String {
19+
fun CPointer<ByteVar>.asString(): String {
2020
val result = this.toKString()
2121
drop_string(this)
2222
return result

0 commit comments

Comments
 (0)