File tree 4 files changed +7
-3
lines changed
java/com/volcengine/service
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
Change log
2
2
3
+ 2025-03-03 Bumped to version v1.0.208
4
+ - Fixed a version detection bug that occurred when v1 and v2 SDKs were used simultaneously in the same application.
5
+
3
6
2025-02-27 Bumped to version v1.0.207
4
7
- Updated apis for contentSecurity/imagex/livesaas/vikingDB/vod
5
8
Original file line number Diff line number Diff line change 4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
6
6
<groupId >com.volcengine</groupId >
7
- <version >1.0.207 </version >
7
+ <version >1.0.208 </version >
8
8
<artifactId >volc-sdk-java</artifactId >
9
9
10
10
<name >volc-sdk-java</name >
135
135
<directory >src/main/resources</directory >
136
136
<filtering >true</filtering >
137
137
<includes >
138
- <include >**/version </include >
138
+ <include >**/sdkversion </include >
139
139
</includes >
140
140
</resource >
141
141
</resources >
Original file line number Diff line number Diff line change @@ -134,10 +134,11 @@ private void init(ServiceInfo info) {
134
134
135
135
final Properties properties = new Properties ();
136
136
try {
137
- properties .load (this .getClass ().getClassLoader ().getResourceAsStream ("com/volcengine/version " ));
137
+ properties .load (this .getClass ().getClassLoader ().getResourceAsStream ("com/volcengine/sdkversion " ));
138
138
this .VERSION = properties .getProperty ("version" );
139
139
} catch (IOException e ) {
140
140
LOG .error ("Read file version file fail." );
141
+ this .VERSION = "UNKNOWN" ;
141
142
}
142
143
}
143
144
File renamed without changes.
You can’t perform that action at this time.
0 commit comments