diff --git a/NEWS.md b/NEWS.md index 4fbd117..f9ea45a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,6 +2,13 @@ See [releases](https://github.com/c-eg/themoviedbapi/releases) for downloads and details +v2.1.0 +----- + +* replaces okhttp3 with the java standard library http client +* fix a spelling mistake +* expand static imports for lombok generated methods (tests) - they don't work with javac + v2.0.4 ----- diff --git a/README.md b/README.md index a9c4113..dad2d22 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ project. uk.co.conoregan themoviedbapi - 2.0.4 + 2.1.0 ``` @@ -33,7 +33,7 @@ project. ```groovy dependencies { - implementation 'uk.co.conoregan:themoviedbapi:2.0.4' + implementation 'uk.co.conoregan:themoviedbapi:2.1.0' } ``` diff --git a/build.gradle b/build.gradle index af54b6e..15db105 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ dependencies { // https://stackoverflow.com/questions/34377367/why-is-gradle-install-replacing-my-version-with-unspecified group 'uk.co.conoregan' -version '2.0.4' +version '2.1.0' java { withJavadocJar()