Updated version in README

This commit is contained in:
Erik C. Thauvin 2023-11-26 00:37:31 -08:00
parent 79ab2287d3
commit 2b4a7e5534
2 changed files with 3 additions and 3 deletions

View file

@ -97,7 +97,7 @@ To use with [bld](https://rife2.com/bld), include the following dependency in yo
repositories = List.of(MAVEN_CENTRAL);
scope(compile)
.include(dependency("net.thauvin.erik:cryptoprice:1.0.1"));
.include(dependency("net.thauvin.erik:jokeapi:0.9.1"));
```
Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project.
@ -111,7 +111,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:jokeapi:0.9.0")
implementation("net.thauvin.erik:jokeapi:0.9.1")
}
```

View file

@ -58,7 +58,7 @@ public class JokeApiBuild extends Project {
public JokeApiBuild() {
pkg = "net.thauvin.erik";
name = "jokeapi";
version = version(0, 9, 1);
version = version(0, 9, 2, "SNAPSHOT");
javaRelease = 11;
downloadSources = true;