Updated version numbers.

This commit is contained in:
Erik C. Thauvin 2021-03-21 22:42:34 -07:00
parent 4059c4388d
commit e9c5b23a30
6 changed files with 7 additions and 7 deletions

View file

@ -1 +1 @@
future-release=1.0.2
future-release=1.0.3

View file

@ -38,13 +38,13 @@ To install and run from Gradle, add the following to the build.gradle file:
```gradle
dependencies {
compile 'net.thauvin.erik:pinboard-poster:1.0.2'
compile 'net.thauvin.erik:pinboard-poster:1.0.3'
}
```
[View Example](https://github.com/ethauvin/pinboard-poster/blob/master/samples/java/build.gradle)
[View Kotlin DSL Example](https://github.com/ethauvin/pinboard-poster/blob/master/samples/kotlin/build.gradle.kts)
Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://search.maven.org/artifact/net.thauvin.erik/pinboard-poster/1.0.2/jar).
Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://search.maven.org/artifact/net.thauvin.erik/pinboard-poster/1.0.3/jar).
## Adding

View file

@ -13,7 +13,7 @@ plugins {
}
group = "net.thauvin.erik"
version = "1.0.2"
version = "1.0.3"
description = "Pinboard Poster for Kotlin/Java"
val gitHub = "ethauvin/$name"

View file

@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId>
<artifactId>pinboard-poster</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<name>pinboard-poster</name>
<description>Pinboard Poster for Kotlin/Java</description>
<url>https://github.com/ethauvin/pinboard-poster</url>

View file

@ -15,5 +15,5 @@ repositories {
}
dependencies {
compile 'net.thauvin.erik:pinboard-poster:1.0.2'
compile 'net.thauvin.erik:pinboard-poster:1.0.3'
}

View file

@ -13,7 +13,7 @@ repositories {
}
dependencies {
compile("net.thauvin.erik:pinboard-poster:1.0.2")
compile("net.thauvin.erik:pinboard-poster:1.0.3")
}
application {