From 876d855eb018c6c1016bcea80b434e1136a4e2d5 Mon Sep 17 00:00:00 2001 From: Alexey Abashev Date: Thu, 16 Jul 2020 19:45:41 +0300 Subject: [PATCH] Release 4.3.0 --- README.md | 8 +++++--- pom.xml | 2 +- samples/s3-copy | 2 +- samples/s3-list | 2 +- samples/s3-remove | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2a6f475b..2d8e47ba 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ Amazon S3 driver for VFS (Apache Commons Virtual File System) com.github.abashev vfs-s3 - 4.2.0 + 4.3.0 ### How to add as dependency into your Gradle build - implementation 'com.github.abashev:vfs-s3:4.2.0' + implementation 'com.github.abashev:vfs-s3:4.3.0' ### URL format @@ -33,7 +33,9 @@ Provider | URL ----- | ------- Amazon S3 | https://aws.amazon.com/s3/ Yandex Object Storage | https://cloud.yandex.ru/services/storage -Mail.ru Cloud Storage | https://mcs.mail.ru/storage/ +Mail.ru Cloud Storage | https://mcs.mail.ru/storage/ +Alibaba Cloud Object Storage Service | https://www.alibabacloud.com/product/oss + ### Sample groovy scripts - https://github.com/abashev/vfs-s3/tree/branch-4.x.x/samples diff --git a/pom.xml b/pom.xml index d225d05e..73e87eb5 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.github.abashev vfs-s3 jar - 4.3.0-SNAPSHOT + 4.3.0 ${project.groupId}:${project.artifactId} Amazon S3 driver for VFS (Apache Commons Virtual File System) diff --git a/samples/s3-copy b/samples/s3-copy index f3a68e79..bc2301fd 100755 --- a/samples/s3-copy +++ b/samples/s3-copy @@ -1,6 +1,6 @@ #!/usr/bin/env groovy -@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.0') +@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0') @Grab(group='commons-httpclient', module='commons-httpclient', version='3.1') import org.apache.commons.vfs2.* diff --git a/samples/s3-list b/samples/s3-list index 7511a6b0..cb3015d2 100755 --- a/samples/s3-list +++ b/samples/s3-list @@ -1,6 +1,6 @@ #!/usr/bin/env groovy -@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.0') +@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0') @Grab(group='commons-httpclient', module='commons-httpclient', version='3.1') import org.apache.commons.vfs2.* diff --git a/samples/s3-remove b/samples/s3-remove index db62f1b1..dcbaa53f 100755 --- a/samples/s3-remove +++ b/samples/s3-remove @@ -1,6 +1,6 @@ #!/usr/bin/env groovy -@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.0') +@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0') import org.apache.commons.vfs2.*