Version 1.1.0

This commit is contained in:
Erik C. Thauvin 2025-03-16 22:36:30 -07:00
parent fb7f7b3c3a
commit 5caab7adb7
Signed by: erik
GPG key ID: 776702A6A2DA330E
5 changed files with 8 additions and 8 deletions

View file

@ -69,7 +69,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.2");
.include("net.thauvin.erik:isgd-shorten:1.1.0");
```
## Gradle
@ -83,7 +83,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:isgd-shorten:1.0.2")
implementation("net.thauvin.erik:isgd-shorten:1.1.0")
}
```

View file

@ -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.2"));
.include(dependency("net.thauvin.erik:isgd-shorten:1.1.0"));
}
public static void main(String[] args) {

View file

@ -13,7 +13,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:isgd-shorten:1.0.2")
implementation("net.thauvin.erik:isgd-shorten:1.1.0")
}
java {

View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId>
<artifactId>isgd-shorten</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.1.0</version>
<name>isgd-shorten</name>
<description>A simple implementation of the is.gd URL shortening and lookup APIs</description>
<url>https://github.com/ethauvin/isgd-shorten</url>
@ -18,13 +18,13 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.0.20</version>
<version>2.1.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.thauvin.erik.urlencoder</groupId>
<artifactId>urlencoder-lib-jvm</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
<scope>compile</scope>
</dependency>
</dependencies>

View file

@ -60,7 +60,7 @@ public class IsgdShortenBuild extends Project {
public IsgdShortenBuild() {
pkg = "net.thauvin.erik";
name = "isgd-shorten";
version = version(1, 0, 2, "SNAPSHOT");
version = version(1, 1, 0);
javaRelease = 11;
downloadSources = true;