Updated version in README

This commit is contained in:
Erik C. Thauvin 2023-11-26 00:39:53 -08:00
parent e7a6b3481c
commit c9d4ec46df
2 changed files with 3 additions and 3 deletions

View file

@ -57,7 +57,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:pinboard-poster:1.1.0"));
.include(dependency("net.thauvin.erik:pinboard-poster:1.1.1"));
```
Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project.
@ -73,7 +73,7 @@ repositories {
}
dependencies {
compile 'net.thauvin.erik:pinboard-poster:1.1.0'
compile 'net.thauvin.erik:pinboard-poster:1.1.1'
}
```

View file

@ -58,7 +58,7 @@ public class PinboardPosterBuild extends Project {
public PinboardPosterBuild() {
pkg = "net.thauvin.erik";
name = "pinboard-poster";
version = version(1, 1, 1);
version = version(1, 1, 2, "SNAPSHOT");
mainClass = pkg + ".PinboardPoster";