diff --git a/.github_changelog_generator b/.github_changelog_generator
index 19e45d2..6236107 100644
--- a/.github_changelog_generator
+++ b/.github_changelog_generator
@@ -1 +1 @@
-future-release=1.1.0
+future-release=1.0.2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4090be3..366e7bd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
# 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:**
diff --git a/README.md b/README.md
index f0bfcb0..74eb116 100644
--- a/README.md
+++ b/README.md
@@ -37,13 +37,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.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 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
diff --git a/build.gradle.kts b/build.gradle.kts
index 509205a..ae4d8c4 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -13,7 +13,7 @@ plugins {
}
group = "net.thauvin.erik"
-version = "1.1.0"
+version = "1.0.2"
description = "Pinboard Poster for Kotlin/Java"
val gitHub = "ethauvin/$name"
diff --git a/pom.xml b/pom.xml
index 7bda892..ee2d0a7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,7 +8,7 @@
4.0.0
net.thauvin.erik
pinboard-poster
- 1.1.0
+ 1.0.2
pinboard-poster
Pinboard Poster for Kotlin/Java
https://github.com/ethauvin/pinboard-poster
diff --git a/samples/java/build.gradle b/samples/java/build.gradle
index e32d5a8..a1b6de5 100644
--- a/samples/java/build.gradle
+++ b/samples/java/build.gradle
@@ -10,7 +10,7 @@ defaultTasks 'run'
mainClassName = 'net.thauvin.erik.pinboard.samples.JavaExample'
dependencies {
- compile 'net.thauvin.erik:pinboard-poster:1.1.0'
+ compile 'net.thauvin.erik:pinboard-poster:1.0.2'
}
repositories {
diff --git a/samples/kotlin/build.gradle.kts b/samples/kotlin/build.gradle.kts
index e0567d8..9f2fcc0 100644
--- a/samples/kotlin/build.gradle.kts
+++ b/samples/kotlin/build.gradle.kts
@@ -8,7 +8,7 @@ plugins {
defaultTasks(ApplicationPlugin.TASK_RUN_NAME)
dependencies {
- compile("net.thauvin.erik:pinboard-poster:1.1.0")
+ compile("net.thauvin.erik:pinboard-poster:1.0.2")
}
application {