Skip to content

Commit

Permalink
v2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
c-eg committed Mar 27, 2024
1 parent 39dde24 commit b51a5c2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ project.
<dependency>
<groupId>uk.co.conoregan</groupId>
<artifactId>themoviedbapi</artifactId>
<version>1.15.1</version>
<version>2.0.0</version>
</dependency>
```
</details>
Expand All @@ -33,7 +33,7 @@ project.

```groovy
dependencies {
implementation 'uk.co.conoregan:themoviedbapi:1.15.1'
implementation 'uk.co.conoregan:themoviedbapi:2.0.0'
}
```
</details>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit b51a5c2

Please sign in to comment.