Skip to content

Commit

Permalink
Merge pull request #10 from transloadit/Update_Readme_Prepare_Release
Browse files Browse the repository at this point in the history
Prepare Release
  • Loading branch information
Acconut committed Jan 10, 2022
2 parents e3a79d9 + 596a23c commit 6073a8a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.0.5 / 2022-01-10 ###
* Update dependency for Transloadit Java SDK to 0.4.1,
this update is recommended as it contains patches for known security vulnerabilities.

### 0.0.4 / 2021-02-25 ###

* Update dependency for Transloadit Java SDK to 0.1.6
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The JARs can be downloaded manually from [Maven Central](https://search.maven.or
**Gradle:**

```groovy
implementation 'com.transloadit.android.sdk:transloadit-android:0.0.3'
implementation 'com.transloadit.android.sdk:transloadit-android:0.0.5'
```

**Maven:**
Expand All @@ -24,7 +24,7 @@ implementation 'com.transloadit.android.sdk:transloadit-android:0.0.3'
<dependency>
<groupId>com.transloadit.android.sdk</groupId>
<artifactId>transloadit-android</artifactId>
<version>0.0.3</version>
<version>0.0.5</version>
</dependency>
```

Expand All @@ -48,7 +48,7 @@ public class MyAssemblyProgressListener implements AssemblyProgressListener {
}

@Override
public void onUploadPogress(long uploadedBytes, long totalBytes) {
public void onUploadProgress(long uploadedBytes, long totalBytes) {
System.out.println("uploaded: " + uploadedBytes + " of: " + totalBytes);
}

Expand Down
2 changes: 1 addition & 1 deletion transloadit-android/src/main/res/buildinfo.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version="0.0.4"
version="0.0.5"
description="An Android Integration of the Transloadit's(https://transloadit.com) file uploading and encoding service."
group='com.transloadit.android.sdk'

0 comments on commit 6073a8a

Please sign in to comment.