diff --git a/README.md b/README.md index 71cef60..1f30421 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ To add this library as a dependency in your app add the following to your build ### Gradle ```kotlin -implementation("me.lessis:typeid:0.0.1") +implementation("me.lessis:typeid:0.0.2") ``` ### Maven @@ -25,7 +25,7 @@ implementation("me.lessis:typeid:0.0.1") me.lessis typeid - 0.0.1 + 0.0.2 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 37cbf69..7cedc19 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -21,7 +21,7 @@ plugins { // https://central.sonatype.org/publish/publish-guide/#introduction group = "me.lessis" -version = "0.0.1" +version = "0.0.2" repositories { // Use Maven Central for resolving dependencies. @@ -123,3 +123,10 @@ java { languageVersion.set(JavaLanguageVersion.of(17)) } } + +jmh { + warmupIterations.set(3) + iterations.set(2) + threads.set(1) + fork.set(1) +} \ No newline at end of file