Skip to content

Commit

Permalink
v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
c-eg committed Aug 13, 2024
1 parent 77653cc commit 1fb1aa2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----

Expand Down
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -23,7 +19,7 @@ project.
<dependency>
<groupId>uk.co.conoregan</groupId>
<artifactId>themoviedbapi</artifactId>
<version>2.1.1</version>
<version>{version}</version>
</dependency>
```
</details>
Expand All @@ -33,7 +29,7 @@ project.

```kotlin
dependencies {
implementation("uk.co.conoregan:themoviedbapi:2.1.1")
implementation("uk.co.conoregan:themoviedbapi:{version}")
}
```
</details>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "uk.co.conoregan"
version = "2.1.1"
version = "2.1.2"

repositories {
mavenCentral()
Expand Down

0 comments on commit 1fb1aa2

Please sign in to comment.