Skip to content

Commit

Permalink
Bump the version to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ShikaSD committed Jan 7, 2025
1 parent edfcc46 commit a42bb51
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The plugin adds `readResolve` method for every object which either:
// plugins dsl
plugins {
id "me.shika.kotlin-object-java-serialization" version "1.4.2"
id "me.shika.kotlin-object-java-serialization" version "1.5.0"
}
// or else
Expand All @@ -25,7 +25,7 @@ buildscript {
}
}
dependencies {
classpath "me.shika:kotlin-object-java-serialization:1.4.2"
classpath "me.shika:kotlin-object-java-serialization:1.5.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ allprojects {
}

group 'me.shika'
version '1.4.2'
version '1.5.0'

kotlin {
jvmToolchain(11)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ObjectSerializationPlugin : KotlinCompilerPluginSupportPlugin {
SubpluginArtifact(
groupId = "me.shika",
artifactId = "kotlin-object-java-serialization",
version = "1.4.2"
version = "1.5.0"
)

override fun isApplicable(kotlinCompilation: KotlinCompilation<*>): Boolean =
Expand Down
2 changes: 1 addition & 1 deletion integration-test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'org.jetbrains.kotlin.jvm'
// Use for testing maven local
// id 'me.shika.kotlin-object-java-serialization' version '1.4.2'
// id 'me.shika.kotlin-object-java-serialization' version '1.5.0'
}

dependencies {
Expand Down

0 comments on commit a42bb51

Please sign in to comment.