diff --git a/README.md b/README.md index ed6f57e..5a5d512 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![Maven Central](https://img.shields.io/maven-central/v/app.moviebase/tmdb-api?label=Maven%20Central)](https://search.maven.org/artifact/app.moviebase/tmdb-api) ![Github Actions](https://github.com/MoviebaseApp/tmdb-api/actions/workflows/build.yml/badge.svg) [![Issues](https://img.shields.io/github/issues/MoviebaseApp/tmdb-api)](https://github.com/MoviebaseApp/tmdb-api/issues) -[![Kotlin](https://img.shields.io/badge/kotlin-1.9.20-blue.svg?logo=kotlin)](http://kotlinlang.org) +[![Kotlin](https://img.shields.io/badge/kotlin-1.9.22-blue.svg?logo=kotlin)](http://kotlinlang.org) [![Gradle](https://img.shields.io/badge/Gradle-8-green?style=flat)](https://gradle.org) [![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0) [![GitHub Account](https://img.shields.io/static/v1?label=GitHub&message=chrisnkrueger&color=C51162)](https://github.com/chrisnkrueger) @@ -48,7 +48,7 @@ To use the library in a single-platform project, add a dependency. ```kotlin dependencies { - implementation("app.moviebase:tmdb-api:1.2.0") + implementation("app.moviebase:tmdb-api:1.3.2") } ``` @@ -57,24 +57,11 @@ In Kotlin Multiplatform projects, add the dependency to your commonMain source-s ```kotlin commonMain { dependencies { - implementation("app.moviebase:tmdb-api:1.2.0") + implementation("app.moviebase:tmdb-api:1.3.2") } } ``` -### Maven - -Add a dependency to the `` element. - -```xml - - app.moviebase - tmdb-api - 1.2.0 - -``` - - ## Usage Most of the library follows the possibilities and naming at the [official documentation](https://www.themoviedb.org/documentation/api). The documentation of the API endpoints is on [version 3](https://developers.themoviedb.org/3) and [version 4](https://developers.themoviedb.org/4). diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 5c1847c..8757837 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,9 +4,9 @@ spotless = "6.23.3" ben-manes-versions = "0.50.0" dokka = "1.9.10" kotlinx-datetime = "0.5.0" -kotlinx-serialization = "1.6.3" +kotlinx-serialization = "1.6.2" coroutines = "1.8.0" -ktor = "2.38" +ktor = "2.3.8" ktlint = "1.1.1" junit-jupiter = "5.10.1" truth = "1.1.5"