Skip to content

Commit 360322c

Browse files
committed
Merge branch 'hot_fix' into 'master'
bugfix: hot fix session token [skipped] See merge request iaasng/volcstack-java-sdk!17
2 parents 155de0e + 8adfd64 commit 360322c

File tree

14 files changed

+16
-16
lines changed

14 files changed

+16
-16
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.volcengine</groupId>
5353
<artifactId>volcstack-java-sdk-bom</artifactId>
54-
<version>0.1.1</version>
54+
<version>0.1.2</version>
5555
<type>pom</type>
5656
<scope>import</scope>
5757
</dependency>
@@ -67,12 +67,12 @@
6767
<dependency>
6868
<groupId>com.volcengine</groupId>
6969
<artifactId>volcstack-java-sdk-vpc</artifactId>
70-
<version>0.1.1</version>
70+
<version>0.1.2</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>com.volcengine</groupId>
7474
<artifactId>volcstack-java-sdk-ecs</artifactId>
75-
<version>0.1.1</version>
75+
<version>0.1.2</version>
7676
</dependency>
7777
</dependencies>
7878
```

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.volcengine</groupId>
55
<artifactId>volcstack-java-sdk</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.1.1</version>
7+
<version>0.1.2</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<java.source.version>1.7</java.source.version>

volcstack-java-sdk-autoscaling/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.1</version>
6+
<version>0.1.2</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.1</version>
6+
<version>0.1.2</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-cen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.1</version>
6+
<version>0.1.2</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-clb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.1</version>
6+
<version>0.1.2</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.volcengine</groupId>
55
<artifactId>volcstack-java-sdk</artifactId>
6-
<version>0.1.1</version>
6+
<version>0.1.2</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-core/src/main/java/com/volcengine/volcstack/sign/Credentials.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static Credentials getEnvCredentials() {
4040
Credentials credentials = new Credentials();
4141
credentials.accessKey = System.getenv("VOLCSTACK_ACCESS_KEY");
4242
credentials.secretKey = System.getenv("VOLCSTACK_SECRET_KEY");
43-
credentials.secretKey = System.getenv("VOLCSTACK_SESSION_TOKEN");
43+
credentials.sessionToken = System.getenv("VOLCSTACK_SESSION_TOKEN");
4444
return credentials;
4545
}
4646

volcstack-java-sdk-directconnect/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.1</version>
6+
<version>0.1.2</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

volcstack-java-sdk-ecs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>volcstack-java-sdk</artifactId>
55
<groupId>com.volcengine</groupId>
6-
<version>0.1.1</version>
6+
<version>0.1.2</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)