diff --git a/.idea/misc.xml b/.idea/misc.xml index 84b848d..f2b4c1e 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,12 +3,17 @@ + + + + + diff --git a/README.md b/README.md index ad7bac2..d78cbbd 100644 --- a/README.md +++ b/README.md @@ -95,10 +95,10 @@ joke.getJoke().forEach(System.out::println); To use with [bld](https://rife2.com/bld), include the following dependency in your build file: ```java -repositories = List.of(MAVEN_CENTRAL); +repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); scope(compile) - .include(dependency("net.thauvin.erik:jokeapi:0.9.1")); + .include(dependency("net.thauvin.erik", "jokeapi", "1.0.0-SNAPSHOT")); ``` Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project. @@ -112,7 +112,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:jokeapi:0.9.1") + implementation("net.thauvin.erik:jokeapi:1.0.0-SNAPSHOT") } ``` diff --git a/pom.xml b/pom.xml index 0d3d213..2f8858d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 net.thauvin.erik jokeapi - 0.9.2-SNAPSHOT + 1.0.0-SNAPSHOT jokeapi Retrieve jokes from Sv443's JokeAPI https://github.com/ethauvin/jokeapi diff --git a/src/bld/java/net/thauvin/erik/JokeApiBuild.java b/src/bld/java/net/thauvin/erik/JokeApiBuild.java index ec95df3..979bb2e 100644 --- a/src/bld/java/net/thauvin/erik/JokeApiBuild.java +++ b/src/bld/java/net/thauvin/erik/JokeApiBuild.java @@ -60,7 +60,7 @@ public class JokeApiBuild extends Project { public JokeApiBuild() { pkg = "net.thauvin.erik"; name = "jokeapi"; - version = version(0, 9, 2, "SNAPSHOT"); + version = version(1, 0, 0, "SNAPSHOT"); javaRelease = 11; downloadSources = true;