Updated version numbers to 1.0.2 since the new pinboard API is not quite ready.

This commit is contained in:
Erik C. Thauvin 2021-03-21 21:08:30 -07:00
parent 2d20d0292d
commit 196d497003
7 changed files with 9 additions and 9 deletions

View file

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

View file

@ -1,8 +1,8 @@
# Changelog # Changelog
## [1.1.0](https://github.com/ethauvin/pinboard-poster/tree/1.1.0) (2021-03-21) ## [1.0.2](https://github.com/ethauvin/pinboard-poster/tree/1.0.2) (2021-03-21)
[Full Changelog](https://github.com/ethauvin/pinboard-poster/compare/1.0.1...1.1.0) [Full Changelog](https://github.com/ethauvin/pinboard-poster/compare/1.0.1...1.0.2)
**Implemented enhancements:** **Implemented enhancements:**

View file

@ -37,13 +37,13 @@ To install and run from Gradle, add the following to the build.gradle file:
```gradle ```gradle
dependencies { dependencies {
compile 'net.thauvin.erik:pinboard-poster:1.0.1' compile 'net.thauvin.erik:pinboard-poster:1.0.2'
} }
``` ```
[View Example](https://github.com/ethauvin/pinboard-poster/blob/master/samples/java/build.gradle) [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) [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.1.0/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.2/jar)
## Adding ## Adding

View file

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

View file

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

View file

@ -10,7 +10,7 @@ defaultTasks 'run'
mainClassName = 'net.thauvin.erik.pinboard.samples.JavaExample' mainClassName = 'net.thauvin.erik.pinboard.samples.JavaExample'
dependencies { dependencies {
compile 'net.thauvin.erik:pinboard-poster:1.1.0' compile 'net.thauvin.erik:pinboard-poster:1.0.2'
} }
repositories { repositories {

View file

@ -8,7 +8,7 @@ plugins {
defaultTasks(ApplicationPlugin.TASK_RUN_NAME) defaultTasks(ApplicationPlugin.TASK_RUN_NAME)
dependencies { dependencies {
compile("net.thauvin.erik:pinboard-poster:1.1.0") compile("net.thauvin.erik:pinboard-poster:1.0.2")
} }
application { application {