Skip to content

Commit

Permalink
Prepare v2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdr-chakotay committed Jan 14, 2025
1 parent 7b14498 commit 129befa
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 @@
### Not released yet ###
### 2.0.0 / 2024-01-14 ###
#### Major Release
* Exchange the Socket based assembly status fetching with a Server-Sent-Events (SSE) solution.
* Added new methods to the AssemblyListener interface to provide more information about the assembly status. e.g. encoding progress with AssemblyListener#onAssemblyProgress().
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:1.0.1'
implementation 'com.transloadit.sdk:transloadit:2.0.0'
```

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

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/java-sdk-version/version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
versionNumber='1.0.1'
versionNumber='2.0.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 @@ -63,7 +63,7 @@ public void get() throws Exception {
mockServerClient.verify(HttpRequest.request()
.withPath("/foo")
.withMethod("GET")
.withHeader("Transloadit-Client", "java-sdk:1.0.1"));
.withHeader("Transloadit-Client", "java-sdk:2.0.0"));

}

Expand Down

0 comments on commit 129befa

Please sign in to comment.