diff --git a/.github_changelog_generator b/.github_changelog_generator new file mode 100644 index 0000000..19e45d2 --- /dev/null +++ b/.github_changelog_generator @@ -0,0 +1 @@ +future-release=1.1.0 diff --git a/.gitignore b/.gitignore index aa7ddd5..9dda44b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,17 +2,7 @@ !.vscode/launch.json !.vscode/settings.json !.vscode/tasks.json -.classpath -.DS_Store -.gradle -.kobalt -.nb-gradle -.project -.settings -.vscode/* -*.code-workspace -*.iws -*.sublime-* +**/*.class **/.idea/**/dataSources.ids **/.idea/**/dataSources.local.xml **/.idea/**/dataSources/ @@ -27,7 +17,17 @@ **/.idea/**/uiDesigner.xml **/.idea/**/usage.statistics.xml **/.idea/**/workspace.xml -**/*.class +*.code-workspace +*.iws +*.sublime-* +.DS_Store +.classpath +.gradle +.kobalt +.nb-gradle +.project +.settings +.vscode/* /bin /build /deploy @@ -40,7 +40,8 @@ /project.properties /target /test-output +Thumbs.db ehthumbs.db kobaltBuild kobaltw*-test -Thumbs.db \ No newline at end of file +pom.xml.asc diff --git a/CHANGELOG.md b/CHANGELOG.md index adfacec..4090be3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ -# Change Log +# Changelog + +## [1.1.0](https://github.com/ethauvin/pinboard-poster/tree/1.1.0) (2021-03-21) + +[Full Changelog](https://github.com/ethauvin/pinboard-poster/compare/1.0.1...1.1.0) + +**Implemented enhancements:** + +- Use HttpLoggingInterceptor instead of manually logging. [\#3](https://github.com/ethauvin/pinboard-poster/issues/3) + +**Fixed bugs:** + +- executeMethod should trap IO execeptions [\#2](https://github.com/ethauvin/pinboard-poster/issues/2) ## [1.0.1](https://github.com/ethauvin/pinboard-poster/tree/1.0.1) (2019-05-27) + [Full Changelog](https://github.com/ethauvin/pinboard-poster/compare/1.0.0...1.0.1) **Implemented enhancements:** @@ -8,15 +21,21 @@ - Implement better error reporting. [\#1](https://github.com/ethauvin/pinboard-poster/issues/1) ## [1.0.0](https://github.com/ethauvin/pinboard-poster/tree/1.0.0) (2018-06-26) + [Full Changelog](https://github.com/ethauvin/pinboard-poster/compare/0.9.3...1.0.0) ## [0.9.3](https://github.com/ethauvin/pinboard-poster/tree/0.9.3) (2017-11-09) + [Full Changelog](https://github.com/ethauvin/pinboard-poster/compare/0.9.2...0.9.3) ## [0.9.2](https://github.com/ethauvin/pinboard-poster/tree/0.9.2) (2017-11-08) + [Full Changelog](https://github.com/ethauvin/pinboard-poster/compare/0.9.1...0.9.2) ## [0.9.1](https://github.com/ethauvin/pinboard-poster/tree/0.9.1) (2017-05-18) +[Full Changelog](https://github.com/ethauvin/pinboard-poster/compare/2ee3568e40114e19b0956ea7d12c071d5c49b0d5...0.9.1) -\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* \ No newline at end of file + + +\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* diff --git a/README.md b/README.md index b43dbf2..f0bfcb0 100644 --- a/README.md +++ b/README.md @@ -31,21 +31,7 @@ poster.deletePin("http:///www.example.com/bar"); Your API authentication token is available on the [Pinboard settings page](https://pinboard.in/settings/password). -## Usage with Maven and Gradle - -### Maven - -To install and run from Maven, configure an artifact as follows: - -```xml - - net.thauvin.erik - pinboard-poster - 1.0.1 - -``` - -### Gradle +## Usage with Gradle, Maven, etc. To install and run from Gradle, add the following to the build.gradle file: @@ -57,6 +43,8 @@ dependencies { [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) + ## Adding The `addPin` function support all of the [Pinboard API parameters](https://pinboard.in/api/#posts_add): diff --git a/pom.xml b/pom.xml index a3d4392..7bda892 100644 --- a/pom.xml +++ b/pom.xml @@ -1,23 +1,14 @@ + + + + + 4.0.0 net.thauvin.erik pinboard-poster - 1.0.1 - - - com.squareup.okhttp3 - okhttp - 3.14.2 - compile - - - org.jetbrains.kotlin - kotlin-stdlib - 1.3.31 - compile - - + 1.1.0 pinboard-poster Pinboard Poster for Kotlin/Java https://github.com/ethauvin/pinboard-poster @@ -32,10 +23,11 @@ ethauvin Erik C. Thauvin erik@thauvin.net + https://erik.thauvin.net/ - scm:git:https://github.com/ethauvin/pinboard-poster.git + scm:git:git://github.com/ethauvin/pinboard-poster.git scm:git:git@github.com:ethauvin/pinboard-poster.git https://github.com/ethauvin/pinboard-poster @@ -43,4 +35,24 @@ GitHub https://github.com/ethauvin/pinboard-poster/issues + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.4.31 + compile + + + com.squareup.okhttp3 + okhttp + 4.9.1 + runtime + + + com.squareup.okhttp3 + logging-interceptor + 4.9.1 + runtime + +