Skip to content

Commit b503be0

Browse files
committed
Bump version to 1.5.1
1 parent 5105f79 commit b503be0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+2-2
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.5.0"
17+
id "me.shika.kotlin-object-java-serialization" version "1.5.1"
1818
}
1919
2020
// or else
@@ -25,7 +25,7 @@ buildscript {
2525
}
2626
}
2727
dependencies {
28-
classpath "me.shika:kotlin-object-java-serialization:1.5.0"
28+
classpath "me.shika:kotlin-object-java-serialization:1.5.1"
2929
}
3030
}
3131

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ allprojects {
1111
}
1212

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

1616
kotlin {
1717
jvmToolchain(11)

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

+1-1
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.5.0"
39+
version = "1.5.1"
4040
)
4141

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

integration-test/build.gradle

+2-2
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.5.0'
4+
// id 'me.shika.kotlin-object-java-serialization' version '1.5.1'
55
}
66

77
dependencies {
@@ -10,4 +10,4 @@ dependencies {
1010
testImplementation 'junit:junit:4.13.2'
1111

1212
kotlinCompilerPluginClasspath project(':kotlin-plugin')
13-
}
13+
}

0 commit comments

Comments
 (0)