diff --git a/README.md b/README.md
index eb59274..75a6ab9 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,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("net.thauvin.erik:isgd-shorten:1.0.0");
+ .include("net.thauvin.erik:isgd-shorten:1.0.`");
```
### Gradle
@@ -81,7 +81,7 @@ repositories {
}
dependencies {
- implementation("net.thauvin.erik:isgd-shorten:1.0.0")
+ implementation("net.thauvin.erik:isgd-shorten:1.0.1")
}
```
diff --git a/examples/bld/src/bld/java/com/example/ExampleBuild.java b/examples/bld/src/bld/java/com/example/ExampleBuild.java
index e738c40..1598991 100644
--- a/examples/bld/src/bld/java/com/example/ExampleBuild.java
+++ b/examples/bld/src/bld/java/com/example/ExampleBuild.java
@@ -24,7 +24,7 @@ public class ExampleBuild extends BaseProject {
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
scope(compile)
- .include(dependency("net.thauvin.erik:isgd-shorten:1.0.0"));
+ .include(dependency("net.thauvin.erik:isgd-shorten:1.0.1"));
}
public static void main(String[] args) {
diff --git a/examples/gradle/build.gradle.kts b/examples/gradle/build.gradle.kts
index 52e7edc..293cb9c 100644
--- a/examples/gradle/build.gradle.kts
+++ b/examples/gradle/build.gradle.kts
@@ -13,7 +13,7 @@ repositories {
}
dependencies {
- implementation("net.thauvin.erik:isgd-shorten:1.0.0")
+ implementation("net.thauvin.erik:isgd-shorten:1.0.1")
}
java {
diff --git a/pom.xml b/pom.xml
index d57d3ee..d662447 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
net.thauvin.erik
isgd-shorten
- 1.0.1-SNAPSHOT
+ 1.0.1
isgd-shorten
A simple implementation of the is.gd URL shortening and lookup APIs
https://github.com/ethauvin/isgd-shorten
@@ -21,12 +21,6 @@
1.9.21
compile
-
- org.jetbrains.kotlin
- kotlin-stdlib-common
- 1.9.21
- compile
-
org.jetbrains.kotlin
kotlin-stdlib-jdk7
diff --git a/src/bld/java/net/thauvin/erik/IsgdShortenBuild.java b/src/bld/java/net/thauvin/erik/IsgdShortenBuild.java
index 457608a..94b4bda 100644
--- a/src/bld/java/net/thauvin/erik/IsgdShortenBuild.java
+++ b/src/bld/java/net/thauvin/erik/IsgdShortenBuild.java
@@ -58,7 +58,7 @@ public class IsgdShortenBuild extends Project {
public IsgdShortenBuild() {
pkg = "net.thauvin.erik";
name = "isgd-shorten";
- version = version(1, 0, 1, "SNAPSHOT");
+ version = version(1, 0, 1);
javaRelease = 11;
downloadSources = true;
@@ -69,7 +69,6 @@ public class IsgdShortenBuild extends Project {
final var kotlin = version(1, 9, 21);
scope(compile)
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin))
- .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-common", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk7", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk8", kotlin))
.include(dependency("net.thauvin.erik.urlencoder", "urlencoder-lib-jvm", version(1, 4, 0)));