Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
huiguangjun committed Oct 18, 2019
1 parent 0f05bb3 commit 340d006
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 @@ -11,7 +11,7 @@

<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
<version>3.6.0</version>
<version>3.7.0</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.6.0
version=3.7.0
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.6.0("));
assertTrue(userAgent.startsWith("aliyun-sdk-java/3.7.0("));
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.6.0", version);
assertEquals("3.7.0", version);
}
}

0 comments on commit 340d006

Please sign in to comment.