Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Jul 7, 2023
1 parent 36900bd commit d1b4f06
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -25,7 +25,7 @@ implementation("me.lessis:typeid:0.0.1")
<dependency>
<groupId>me.lessis</groupId>
<artifactId>typeid</artifactId>
<version>0.0.1</version>
<version>0.0.2</version>
</dependency>
```

Expand Down
9 changes: 8 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -123,3 +123,10 @@ java {
languageVersion.set(JavaLanguageVersion.of(17))
}
}

jmh {
warmupIterations.set(3)
iterations.set(2)
threads.set(1)
fork.set(1)
}

0 comments on commit d1b4f06

Please sign in to comment.