Skip to content

Commit a42bb51

Browse files
committed
Bump the version to 1.5.0
1 parent edfcc46 commit a42bb51

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The plugin adds `readResolve` method for every object which either:
1414
1515
// plugins dsl
1616
plugins {
17-
id "me.shika.kotlin-object-java-serialization" version "1.4.2"
17+
id "me.shika.kotlin-object-java-serialization" version "1.5.0"
1818
}
1919
2020
// or else
@@ -25,7 +25,7 @@ buildscript {
2525
}
2626
}
2727
dependencies {
28-
classpath "me.shika:kotlin-object-java-serialization:1.4.2"
28+
classpath "me.shika:kotlin-object-java-serialization:1.5.0"
2929
}
3030
}
3131

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ allprojects {
1111
}
1212

1313
group 'me.shika'
14-
version '1.4.2'
14+
version '1.5.0'
1515

1616
kotlin {
1717
jvmToolchain(11)

gradle-plugin/src/main/kotlin/me/shika/ObjectSerializationPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ObjectSerializationPlugin : KotlinCompilerPluginSupportPlugin {
3636
SubpluginArtifact(
3737
groupId = "me.shika",
3838
artifactId = "kotlin-object-java-serialization",
39-
version = "1.4.2"
39+
version = "1.5.0"
4040
)
4141

4242
override fun isApplicable(kotlinCompilation: KotlinCompilation<*>): Boolean =

integration-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'org.jetbrains.kotlin.jvm'
33
// Use for testing maven local
4-
// id 'me.shika.kotlin-object-java-serialization' version '1.4.2'
4+
// id 'me.shika.kotlin-object-java-serialization' version '1.5.0'
55
}
66

77
dependencies {

0 commit comments

Comments
 (0)