Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
huiguangjun committed Mar 31, 2023
1 parent 09448e0 commit cb1a2be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
<version>3.16.1</version>
<version>3.16.2</version>
<packaging>jar</packaging>
<name>Aliyun OSS SDK for Java</name>
<description>The Aliyun OSS SDK for Java used for accessing Aliyun Object Storage Service</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/versioninfo.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=3.16.1
version=3.16.2
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class VersionUtilTest {
@Test
public void testGetDefaultUserAgent() {
String userAgent = VersionInfoUtils.getDefaultUserAgent();
assertTrue(userAgent.startsWith("aliyun-sdk-java/3.16.1("));
assertTrue(userAgent.startsWith("aliyun-sdk-java/3.16.2("));
assertEquals(userAgent.split("/").length, 4);
assertEquals(userAgent.split(";").length, 2);
assertEquals(userAgent.split("\\(").length, 2);
Expand All @@ -38,7 +38,7 @@ public void testGetDefaultUserAgent() {
@Test
public void testGetVersion() {
String version = VersionInfoUtils.getVersion();
assertEquals("3.16.1", version);
assertEquals("3.16.2", version);
}
}

0 comments on commit cb1a2be

Please sign in to comment.