Skip to content

Commit

Permalink
Version 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Nov 26, 2023
1 parent f1c5f10 commit 0d863f7
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 @@ -37,7 +37,7 @@ To use with [bld](https://rife2.com/bld), include the following dependency in yo
repositories = List.of(MAVEN_CENTRAL);

scope(compile)
.include(dependency("net.thauvin.erik:readingtime:0.9.1"));
.include(dependency("net.thauvin.erik:readingtime:0.9.2"));
```
Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project.

Expand All @@ -50,7 +50,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:readingtime:0.9.1")
implementation("net.thauvin.erik:readingtime:0.9.2")
}
```
Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://search.maven.org/search?q=g:%22net.thauvin.erik%22%20AND%20a:%22readingtime%22).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public ReadingTimeExampleBuild() {
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);

scope(compile)
.include(dependency("net.thauvin.erik", "readingtime", version(0, 9, 2, "SNAPSHOT")));
.include(dependency("net.thauvin.erik", "readingtime", version(0, 9, 2)));
}

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 @@ -12,7 +12,7 @@ repositories {
}

dependencies {
implementation("net.thauvin.erik:readingtime:0.9.2-SNAPSHOT")
implementation("net.thauvin.erik:readingtime:0.9.2")
}

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>readingtime</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<name>readingtime</name>
<description>Estimated Reading Time for Blog Posts, Articles, etc.</description>
<url>https://github.com/ethauvin/readingtime</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/ReadingTimeBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class ReadingTimeBuild extends Project {
public ReadingTimeBuild() {
pkg = "net.thauvin.erik";
name = "readingtime";
version = version(0, 9, 2, "SNAPSHOT");
version = version(0, 9, 2);

javaRelease = 11;
downloadSources = true;
Expand All @@ -67,7 +67,6 @@ public ReadingTimeBuild() {
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("org.jsoup", "jsoup", version(1, 16, 2)));
Expand Down

0 comments on commit 0d863f7

Please sign in to comment.