Skip to content

Commit

Permalink
<release> v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bppleman committed Aug 16, 2024
1 parent 42fff80 commit aeb0b9b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

val sharedGroup = "com.kgit2"
val sharedVersion = "2.2.0"
val sharedVersion = "2.2.1"

group = sharedGroup
version = sharedVersion
Expand Down Expand Up @@ -64,10 +64,10 @@ kotlin {
sourceSets {
// add opt-in
all {
languageSettings.optIn("kotlinx.cinterop.UnsafeNumber")
// languageSettings.optIn("kotlinx.cinterop.UnsafeNumber")
languageSettings.optIn("kotlinx.cinterop.ExperimentalForeignApi")
languageSettings.optIn("kotlin.experimental.ExperimentalNativeApi")
languageSettings.optIn("kotlin.native.runtime.NativeRuntimeApi")
// languageSettings.optIn("kotlin.native.runtime.NativeRuntimeApi")
languageSettings.optIn("kotlin.ExperimentalStdlibApi")

languageSettings {
Expand Down Expand Up @@ -123,8 +123,8 @@ if (ossrhUsername != null && ossrhPassword != null) {
nexusPublishing {
repositories {
sonatype {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
nexusUrl.set(uri(releasesRepoUrl))
snapshotRepositoryUrl.set(uri(snapshotsRepoUrl))
username.set(ossrhUsername)
password.set(ossrhPassword)
}
Expand Down
Empty file removed secret.gpg
Empty file.
2 changes: 1 addition & 1 deletion src/nativeMain/kotlin/com/kgit2/kommand/Extension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import kotlinx.cinterop.memScoped
import kotlinx.cinterop.pointed
import kotlinx.cinterop.toKString

inline fun CPointer<ByteVar>.asString(): String {
fun CPointer<ByteVar>.asString(): String {
val result = this.toKString()
drop_string(this)
return result
Expand Down

0 comments on commit aeb0b9b

Please sign in to comment.