Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Nov 26, 2023
1 parent 2e82c4d commit 080e7c5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -81,7 +81,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:isgd-shorten:1.0.0")
implementation("net.thauvin.erik:isgd-shorten:1.0.1")
}
```

Expand Down
2 changes: 1 addition & 1 deletion examples/bld/src/bld/java/com/example/ExampleBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public ExampleBuild() {
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) {
Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
8 changes: 1 addition & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId>
<artifactId>isgd-shorten</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.1</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>
Expand All @@ -21,12 +21,6 @@
<version>1.9.21</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
<version>1.9.21</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk7</artifactId>
Expand Down
3 changes: 1 addition & 2 deletions src/bld/java/net/thauvin/erik/IsgdShortenBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -69,7 +69,6 @@ public IsgdShortenBuild() {
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)));
Expand Down

0 comments on commit 080e7c5

Please sign in to comment.