diff --git a/README.md b/README.md
index a4e6631..1d5a1f4 100644
--- a/README.md
+++ b/README.md
@@ -98,7 +98,7 @@ To use with [bld](https://rife2.com/bld), include the following dependency in yo
repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
scope(compile)
- .include(dependency("net.thauvin.erik", "jokeapi", "1.0.0-SNAPSHOT"));
+ .include(dependency("net.thauvin.erik", "jokeapi", "1.0.0"));
```
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:1.0.0-SNAPSHOT")
+ implementation("net.thauvin.erik:jokeapi:1.0.0")
}
```
diff --git a/pom.xml b/pom.xml
index 2a9d9e6..52e318e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
net.thauvin.erik
jokeapi
- 1.0.0-SNAPSHOT
+ 1.0.0
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 be69f63..1d01225 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(1, 0, 0, "SNAPSHOT");
+ version = version(1, 0, 0);
javaRelease = 11;
downloadSources = true;