File tree 9 files changed +40
-11
lines changed
src/commonTest/kotlin/dev/snipme/highlights/internal
9 files changed +40
-11
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 0.6.0]
2
+
3
+ ### Added
4
+ - Support for other non-mobile targets
5
+
6
+ ### Changed
7
+ - Project maven description
8
+ - Kotlin version to 1.9.0
9
+
1
10
## [ 0.5.0]
2
11
3
12
### Changed
Original file line number Diff line number Diff line change 1
1
![ highlights_banner_opaque] ( https://github.com/SnipMeDev/Highlights/assets/8405055/e123ce0f-6f58-451a-9e0a-893c0809b909 )
2
2
3
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/dev.snipme/highlights )] ( https://mvnrepository.com/artifact/dev.snipme )
4
+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.9.0-blue.svg?logo=kotlin )] ( http://kotlinlang.org )
5
+ [ ![ GitHub License] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( http://www.apache.org/licenses/LICENSE-2.0 )
6
+
3
7
# Highlights
4
- Kotlin Multiplatform syntax highlighting engine
8
+ Kotlin Multiplatform syntax highlighting engine.
5
9
6
10
## Installation ⬇️
7
11
``` shell
@@ -11,7 +15,7 @@ repositories {
11
15
```
12
16
13
17
``` shell
14
- implementation(" dev.snipme:highlights:0.5 .0" )
18
+ implementation(" dev.snipme:highlights:0.6 .0" )
15
19
```
16
20
17
21
## Features ✨
@@ -22,6 +26,12 @@ implementation("dev.snipme:highlights:0.5.0")
22
26
- Result caching and support for incremental changes
23
27
- Written in pure Kotlin, so available for many platforms 📱 💻 🖥️
24
28
29
+ ## Support ☕
30
+ Kotlin Multiplatform is a fresh environment and developing for it is neither fast nor easy 🥲
31
+
32
+ If you feel that any of our project has saved you a time or effort, then consider supporting us via:
33
+ [ 🧋 Buy Me A Coffee] ( https://bmc.link/SnipMeDev )
34
+
25
35
## Usage ✍️
26
36
27
37
> 💡 As each Highlights instance caches code analysis, it is recommended to re-use the same instance for small code changes.
Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ import org.jetbrains.kotlin.gradle.plugin.mpp.pm20.util.archivesName
6
6
apply (from = " publish-root.gradle" )
7
7
8
8
plugins {
9
- kotlin(" multiplatform" ) version " 1.8.22 "
9
+ kotlin(" multiplatform" ) version " 1.9.0 "
10
10
id(" maven-publish" )
11
11
id(" io.github.gradle-nexus.publish-plugin" ) version " 1.3.0"
12
12
id(" signing" )
13
13
}
14
14
15
15
group = " dev.snipme"
16
- version = " 0.5 .0"
16
+ version = " 0.6 .0"
17
17
18
18
kotlin {
19
19
// Android
@@ -30,6 +30,17 @@ kotlin {
30
30
iosX64()
31
31
iosArm64()
32
32
iosSimulatorArm64()
33
+ // Desktop
34
+ mingwX64()
35
+ linuxX64()
36
+ linuxArm64()
37
+ macosX64()
38
+ macosArm64()
39
+ // Web
40
+ js {
41
+ browser()
42
+ nodejs()
43
+ }
33
44
// Dependencies
34
45
sourceSets {
35
46
val commonTest by getting {
@@ -57,7 +68,7 @@ publishing {
57
68
root.appendNode(" name" , project.name)
58
69
root.appendNode(
59
70
" description" ,
60
- " Kotlin Multiplatform (KMM) syntax highlighting engine"
71
+ " Kotlin Multiplatform syntax highlighting engine. "
61
72
)
62
73
root.appendNode(" url" , " https://github.com/SnipMeDev/Highlights" )
63
74
Original file line number Diff line number Diff line change
1
+ kotlin.js.compiler =ir
Original file line number Diff line number Diff line change 1
1
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
2
3
3
plugins {
4
- kotlin(" jvm" ) version " 1.8.21 "
4
+ kotlin(" jvm" ) version " 1.9.0 "
5
5
application
6
6
}
7
7
@@ -10,6 +10,7 @@ version = "1.0-SNAPSHOT"
10
10
11
11
repositories {
12
12
mavenCentral()
13
+ mavenLocal()
13
14
maven(" https://s01.oss.sonatype.org/content/repositories/snapshots/" )
14
15
}
15
16
@@ -30,5 +31,5 @@ application {
30
31
}
31
32
32
33
dependencies {
33
- implementation(" dev.snipme:highlights:0.5 .0" )
34
+ implementation(" dev.snipme:highlights:0.6 .0" )
34
35
}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ val sampleClass = """
30
30
}
31
31
""" .trimIndent()
32
32
33
- fun main (args : Array < String > ) {
33
+ fun main () {
34
34
println (" ### HIGHLIGHTS ###" )
35
35
println ()
36
36
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ pluginManagement {
2
2
repositories {
3
3
google()
4
4
gradlePluginPortal()
5
- maven(" https://maven.pkg.jetbrains.space/public/p/compose/dev" )
6
5
mavenCentral()
7
6
}
8
7
}
@@ -11,7 +10,6 @@ dependencyResolutionManagement {
11
10
repositories {
12
11
google()
13
12
mavenCentral()
14
- maven(" https://maven.pkg.jetbrains.space/public/p/compose/dev" )
15
13
}
16
14
}
17
15
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import dev.snipme.highlights.model.PhraseLocation
4
4
import dev.snipme.highlights.model.SyntaxLanguage
5
5
import kotlin.test.Test
6
6
import kotlin.test.assertEquals
7
- import kotlin.test.assertNotNull
8
7
9
8
internal class CodeAnalyzerTest {
10
9
You can’t perform that action at this time.
0 commit comments