Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![highlights_banner_opaque](https://github.com/SnipMeDev/Highlights/assets/8405055/e123ce0f-6f58-451a-9e0a-893c0809b909)

[![Maven Central](https://img.shields.io/maven-central/v/dev.snipme/highlights)](https://mvnrepository.com/artifact/dev.snipme)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.22-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.23-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)

# Highlights
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply(from = "publish-root.gradle")

plugins {
kotlin("multiplatform") version "1.9.22"
kotlin("multiplatform") version "1.9.23"
id("maven-publish")
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
id("signing")
Expand Down Expand Up @@ -36,6 +36,7 @@ kotlin {
browser()
nodejs()
}
wasmJs()
// Dependencies
sourceSets {
val commonTest by getting {
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.9.22"
kotlin("jvm") version "1.9.23"
application
}

Expand Down Expand Up @@ -31,5 +31,5 @@ application {
}

dependencies {
implementation("dev.snipme:highlights:0.7.0")
implementation(":highlights")
}
1 change: 0 additions & 1 deletion sample/src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ val sampleClass = """
}
}
""".trimIndent()

fun main() {
println("### HIGHLIGHTS ###")
println()
Expand Down