Skip to content

Commit

Permalink
v1.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Holger Brandl committed Nov 5, 2019
1 parent bb1d95e commit d3711e1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@ See
[releases](https://github.com/holgerbrandl/themoviedbapi/releases)
for downloads and details

v1.10
-----

* Added support for recommended movies
* Added support for `ProductionCompany`
* Improved language support for `TmdbPeople`
* Fixe: TV Keywords
* Added Vote Count and popularity to credits
* Added keywords to TV shows
* Added Content Ratings to TV Series
* Various bug-fixes

Thanks to all committers to this repo.

v1.9
----

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Just add it as dependency to your project. It's available via [jcenter](https://
<dependency>
<groupId>info.movito</groupId>
<artifactId>themoviedbapi</artifactId>
<version>1.9</version>
<version>1.10</version>
</dependency>
```
Read the [Set me up](https://bintray.com/bintray/jcenter) section first, if you haven't addded jcenter as a repository to your pom.xml yet.
Expand All @@ -32,7 +32,7 @@ repositories {
}
dependencies{
compile group: 'info.movito', name: 'themoviedbapi', version:'1.9'
compile group: 'info.movito', name: 'themoviedbapi', version:'1.10'
}
```

Expand All @@ -50,7 +50,7 @@ TmdbMovies movies = new TmdbApi("<apikey>").getMovies();
MovieDb movie = movies.getMovie(5353, "en");
```

The wrapper implements all major parts of the JSON API as detailed out in the [TMdB API documentation]((http://api.themoviedb.org/)).
The wrapper implements all major parts of the JSON API as detailed out in the [TMdB API documentation](http://api.themoviedb.org/).
However, as the latter is subject to constant change, feel welcome to point out missing bits by submitting a ticket.
Or even better, just send us a pull request!

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>info.movito</groupId>
<artifactId>themoviedbapi</artifactId>
<version>1.10-SNAPSHOT</version>
<version>1.10</version>

<packaging>jar</packaging>
<name>TMDB-API</name>
Expand Down

0 comments on commit d3711e1

Please sign in to comment.