diff --git a/NEWS.md b/NEWS.md index 145145e..38a74f8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,6 +2,15 @@ See [releases](https://github.com/c-eg/themoviedbapi/releases) for downloads and details +v2.1.2 +----- + +* migrate gradle build configuration from Groovy to Kotlin +* update gradle wrapper to version 8.9 +* change dependencies to use BOMs +* add serialVersionUID to Serializable implementation +* update many dependencies + v2.1.1 ----- diff --git a/README.md b/README.md index e18719a..94c0630 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,6 @@ The wrapper implements most, if not all, of the JSON API. However, because the A not be implemented, or current functionality may break. Please point this out by submitting an issue, or even better, just send us a pull request! -## Setup -> **Starting with v1.15.1 the library has changed ownership. This required a change of the group-id from com.github.holgerbrandl to -> uk.co.conoregan** - It's available via [Maven Central](https://central.sonatype.com/artifact/uk.co.conoregan/themoviedbapi). Just add it as dependency to your project. @@ -23,7 +19,7 @@ project. uk.co.conoregan themoviedbapi - 2.1.1 + {version} ``` @@ -33,7 +29,7 @@ project. ```kotlin dependencies { - implementation("uk.co.conoregan:themoviedbapi:2.1.1") + implementation("uk.co.conoregan:themoviedbapi:{version}") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index a643554..c3b2308 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "uk.co.conoregan" -version = "2.1.1" +version = "2.1.2" repositories { mavenCentral()