Skip to content

Commit a59eb08

Browse files
authoredSep 26, 2021
Prepare 0.4.1 Release (#77)
* Prepare 0.4.1 Release * Update Request.java
1 parent db8a30e commit a59eb08

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 0.4.1 / 2021-09-26 ###
2+
* Added debugging features regarding HTTP-requests, which should not be used in production without contacting Transloadit support.
3+
14
### 0.4.0 / 2021-09-26 ###
25
* Added support for client-side Assembly IDs. You can obtain the ID of an Assembly now before even uploading/saving it. You can achieve this with the brand-new Assembly#getAssemblyID() method.
36
* Added debugging features regarding AssemblyIDs, which should not be used in production without contacting Transloadit support.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ implementation 'com.transloadit.sdk:transloadit:0.3.0'
2929
<dependency>
3030
<groupId>com.transloadit.sdk</groupId>
3131
<artifactId>transloadit</artifactId>
32-
<version>0.4.0</version>
32+
<version>0.4.1</version>
3333
</dependency>
3434
```
3535

‎src/main/java/com/transloadit/sdk/Request.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -439,8 +439,8 @@ protected okhttp3.Response retryAfterSpecificErrors(Object[] originalParameters)
439439
throws LocalOperationException, RequestException {
440440
okhttp3.Response response = null;
441441
retryAttemptsRequestExceptionLeft--;
442-
System.out.println("Retry " + requestType.toString() + " , Attempts left: "
443-
+ retryAttemptsRequestExceptionLeft);
442+
//System.out.println("Retry " + requestType.toString() + " , Attempts left: "
443+
// + retryAttemptsRequestExceptionLeft);
444444

445445
try {
446446
int timeToWait = new Random().nextInt(1000) + 1000;

‎src/main/resources/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
versionNumber='0.4.0'
1+
versionNumber='0.4.1'

‎src/test/java/com/transloadit/sdk/RequestTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void get() throws Exception {
6666
mockServerClient.verify(HttpRequest.request()
6767
.withPath("/foo")
6868
.withMethod("GET")
69-
.withHeader("Transloadit-Client", "java-sdk:0.4.0"));
69+
.withHeader("Transloadit-Client", "java-sdk:0.4.1"));
7070

7171
}
7272

0 commit comments

Comments
 (0)
Please sign in to comment.