Skip to content

Commit ab2fb7f

Browse files
committed
v3.2.1
1 parent 07a6995 commit ab2fb7f

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ requires these APIs.
8585
<dependency>
8686
<groupId>com.amilesend</groupId>
8787
<artifactId>tmdb-java-client</artifactId>
88-
<version>3.2</version>
88+
<version>3.2.1</version>
8989
</dependency>
9090
```
9191
3. Instantiate the client with the read access token:
@@ -182,6 +182,7 @@ or alternatively with [OkHttp's builder](https://square.github.io/okhttp/4.x/okh
182182
OkHttpClient httpClient = OkHttpClientBuilder.builder()
183183
.trustManager(myX509TrustManager) // Custom trust manager for self/internally signed SSL/TLS certs
184184
.hostnameVerifier(myHostnameVerifier) // Custom hostname verification for SSL/TLS endpoints
185+
.addInterceptor(myInterceptor) // Custom okhttp interceptor (e.g., logging)
185186
.proxy(myProxy, myProxyUsername, myProxyPassword) // Proxy config
186187
.connectTimeout(8000L) // connection timeout in milliseconds
187188
.readTimeout(5000L) // read timeout in milliseconds

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<groupId>com.amilesend</groupId>
2727
<artifactId>tmdb-java-client</artifactId>
28-
<version>3.2.1-SNAPSHOT</version>
28+
<version>3.2.1</version>
2929

3030
<name>tmdb-java-client</name>
3131
<description>A client to access the TMDB API</description>

0 commit comments

Comments
 (0)