Skip to content

Commit

Permalink
- prepare Version 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdr-chakotay committed May 17, 2021
1 parent 5c1c0bc commit 9e77842
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.1.7 / 2021-05-17 ###
### 0.2.0 / 2021-05-17 ###
* Added retry functionality for assemblies in case of reaching the rate limit

### 0.1.6 / 2021-02-24 ###
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Existing users should take note of the [JCenter shutdown](https://jfrog.com/blog
**Gradle:**

```groovy
implementation 'com.transloadit.sdk:transloadit:0.1.7'
implementation 'com.transloadit.sdk:transloadit:0.2.0'
```

**Maven:**
Expand All @@ -29,7 +29,7 @@ implementation 'com.transloadit.sdk:transloadit:0.1.7'
<dependency>
<groupId>com.transloadit.sdk</groupId>
<artifactId>transloadit</artifactId>
<version>0.1.7</version>
<version>0.2.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
versionNumber='0.1.7'
versionNumber='0.2.0'
2 changes: 1 addition & 1 deletion src/test/java/com/transloadit/sdk/RequestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void get() throws Exception {
mockServerClient.verify(HttpRequest.request()
.withPath("/foo")
.withMethod("GET")
.withHeader("Transloadit-Client", "java-sdk:0.1.7"));
.withHeader("Transloadit-Client", "java-sdk:0.2.0"));

}

Expand Down

0 comments on commit 9e77842

Please sign in to comment.