From b51a5c29f33950650f58d2bd59d5e22eb064998d Mon Sep 17 00:00:00 2001 From: Conor Egan <68134729+c-eg@users.noreply.github.com> Date: Wed, 27 Mar 2024 20:06:22 +0000 Subject: [PATCH] v2.0.0 release --- NEWS.md | 17 +++++++++++++++++ README.md | 4 ++-- build.gradle | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index ca0c9042..f1f08480 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,7 +2,24 @@ See [releases](https://github.com/c-eg/themoviedbapi/releases) for downloads and details +v2.0.0 +----- +This update is a major update to the library, with many breaking changes. +* added checkstyle configuration for code style consistency +* removed deprecated apis +* updated existing apis +* added new tmdb apis +* added lombok +* replaced "WebBrowser" for okhttp3 +* added unit tests for all tmdb api classes +* added github action for checking dependencies +* made each tmdb api method throw a TmdbException if an error occurs +* removed unused models & tools +* added javadocs for all tmdb api methods +* refactored many packages +* added logging +* plus many more small changes v1.15.1 ----- diff --git a/README.md b/README.md index d02abbdb..f88ad2a0 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ project. uk.co.conoregan themoviedbapi - 1.15.1 + 2.0.0 ``` @@ -33,7 +33,7 @@ project. ```groovy dependencies { - implementation 'uk.co.conoregan:themoviedbapi:1.15.1' + implementation 'uk.co.conoregan:themoviedbapi:2.0.0' } ``` diff --git a/build.gradle b/build.gradle index 81f0a059..e4a723df 100644 --- a/build.gradle +++ b/build.gradle @@ -38,7 +38,7 @@ dependencies { // https://stackoverflow.com/questions/34377367/why-is-gradle-install-replacing-my-version-with-unspecified group 'uk.co.conoregan' -version '1.15.1' +version '2.0.0' java { withJavadocJar()