Skip to content

Commit

Permalink
release: release 1.18.RELEASE version
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinten10 committed Oct 18, 2022
1 parent ece5d70 commit a0c81f0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ For a Maven project, add the following to your `pom.xml` file:
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>cloud-runtimes-api</artifactId>
<version>1.17.RELEASE</version>
<version>1.18.RELEASE</version>
</dependency>
...
</dependencies>
Expand All @@ -70,6 +70,6 @@ For a Gradle project, add the following to your `build.gradle` file:
dependencies {
// ...
// https://mvnrepository.com/artifact/group.rxcloud/cloud-runtimes-api
implementation group: 'group.rxcloud', name: 'cloud-runtimes-api', version: '1.17.RELEASE'
implementation group: 'group.rxcloud', name: 'cloud-runtimes-api', version: '1.18.RELEASE'
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,15 @@ public interface NativeAwsS3Runtimes {

/**
* List objects from oss.
*
* @param listObjectsInput
* @return
*/
Mono<ListObjectsOutput> listObjects(ListObjectsInput listObjectsInput);

/**
* Check if an object exists.
*
* @param isObjectExistInput
* @return
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class ListObjectsInput {
* Marker is where you want Amazon S3 to start listing from. Amazon S3 starts
* listing after this specified key. Marker can be any key in the bucket.
*/
private String marker ;
private String marker;
/**
* Bucket name.
*/
Expand Down

0 comments on commit a0c81f0

Please sign in to comment.