Skip to content

Commit 78c90c7

Browse files
authored
Merge pull request #74 from Kucoin/release/2025.11.04
Release/2025.11.04
2 parents 41052c2 + f9772f0 commit 78c90c7

File tree

13 files changed

+74
-22
lines changed

13 files changed

+74
-22
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ generate: setup-logs
9393
$(call generate-code,python,/kucoin_universal_sdk/generate)
9494
$(call generate-code,node,/src/generate)
9595
$(call generate-code,php,/src/Generate,0.1.3-alpha)
96-
$(call generate-code,java,/src/main/java/com/kucoin/universal/sdk/generate,0.1.0-alpha)
96+
$(call generate-code,java,/src/main/java/com/kucoin/universal/sdk/generate,0.1.1-alpha)
9797

9898
.PHONY: gen-postman
9999
gen-postman: preprocessor

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ npm install kucoin-universal-sdk
5858
composer require kucoin/kucoin-universal-sdk=0.1.3-alpha
5959
```
6060

61-
### Java Installation(0.1.0-alpha)
61+
### Java Installation(0.1.1-alpha)
6262
**Note**: This SDK is currently in the Alpha phase. We are actively iterating and improving its features, stability, and documentation. Feedback and contributions are highly encouraged to help us refine the SDK.
6363
```bash
6464
<dependency>
6565
<groupId>com.kucoin</groupId>
6666
<artifactId>kucoin-universal-sdk</artifactId>
67-
<version>0.1.0-alpha</version>
67+
<version>0.1.1-alpha</version>
6868
</dependency>
6969
```
7070

sdk/java/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ API documentation [Changelog](https://www.kucoin.com/docs-new/change-log)
44

55
Current synchronized API documentation version [20250529](https://www.kucoin.com/docs-new/change-log#20250529)
66

7+
## 2025-11-04(Java 0.1.1-alpha)
8+
- Bug fix
9+
710
## 2025-07-30(Java 0.1.0-alpha)
811
- Release Java implementation
912

1013
## 2025-06-11(PHP 0.1.3-alpha)
11-
- Add compatibility for PHP versions from 7.4 to 8.x
14+
- Add compatibility for PHP versions from 7.4 to 8.x
1215

1316
## 2025-06-11(1.3.0)
1417
- Update the latest APIs, documentation, etc

sdk/java/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ For an overview of the project and SDKs in other languages, refer to the [Main R
88

99
## 📦 Installation
1010

11-
### Latest Version: `0.1.0-alpha`
11+
### Latest Version: `0.1.1-alpha`
1212

1313
**Note**: This SDK is currently in the Alpha phase. We are actively iterating and improving its features, stability, and documentation. Feedback and contributions are highly encouraged to help us refine the SDK.
1414

1515
```xml
1616
<dependency>
1717
<groupId>com.kucoin</groupId>
1818
<artifactId>kucoin-universal-sdk</artifactId>
19-
<version>0.1.0-alpha</version>
19+
<version>0.1.1-alpha</version>
2020
</dependency>
2121
```
2222

sdk/java/example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>com.kucoin</groupId>
2020
<artifactId>kucoin-universal-sdk</artifactId>
21-
<version>0.1.0-alpha</version>
21+
<version>0.1.1-alpha</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>org.projectlombok</groupId>

sdk/java/example/src/main/java/com/kucoin/test/regression/RunReconnectTest.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import com.kucoin.universal.sdk.generate.futures.futurespublic.FuturesPublicWs;
88
import com.kucoin.universal.sdk.generate.spot.market.GetAllSymbolsData;
99
import com.kucoin.universal.sdk.generate.spot.market.GetAllSymbolsReq;
10+
import com.kucoin.universal.sdk.generate.spot.spotprivate.SpotPrivateWs;
1011
import com.kucoin.universal.sdk.generate.spot.spotpublic.SpotPublicWs;
1112
import com.kucoin.universal.sdk.model.ClientOption;
1213
import com.kucoin.universal.sdk.model.Constants;
@@ -54,6 +55,7 @@ public static void runReconnectTest() {
5455
.collect(Collectors.toList());
5556

5657
spotWsExample(wsSvc.newSpotPublicWS(), symbols);
58+
privateWsExample(wsSvc.newSpotPrivateWS());
5759
futuresWsExample(wsSvc.newFuturesPublicWS());
5860

5961
log.info("Total subscribe: 53");
@@ -77,6 +79,11 @@ public static void spotWsExample(SpotPublicWs ws, List<String> symbols) {
7779
ws.ticker(new String[] {"BTC-USDT", "ETH-USDT"}, RunReconnectTest::noop);
7880
}
7981

82+
public static void privateWsExample(SpotPrivateWs ws) {
83+
ws.start();
84+
ws.orderV2(RunReconnectTest::noop);
85+
}
86+
8087
public static void futuresWsExample(FuturesPublicWs ws) {
8188
ws.start();
8289
ws.tickerV2("XBTUSDTM", RunReconnectTest::noop);

sdk/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.kucoin</groupId>
88
<artifactId>kucoin-universal-sdk</artifactId>
9-
<version>0.1.0-alpha</version>
9+
<version>0.1.1-alpha</version>
1010

1111
<name>kucoin-universal-sdk</name>
1212
<url>https://www.kucoin.com</url>

sdk/java/script/release_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
if [[ "${USE_LOCAL,,}" == "true" ]]; then
66
cd /src
7-
mvn clean install -DskipTests
7+
mvn clean install -DskipTests -Dgpg.skip=true
88
echo "Local jars installed."
99
else
1010
echo "USE_LOCAL is not true, skipping local jar installation."

sdk/java/script/run_forever_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
if [[ "${USE_LOCAL,,}" == "true" ]]; then
66
cd /src
7-
mvn clean install -DskipTests
7+
mvn clean install -DskipTests -Dgpg.skip=true
88
echo "Local jars installed."
99
else
1010
echo "USE_LOCAL is not true, skipping local jar installation."

sdk/java/script/ws_reconnect_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
if [[ "${USE_LOCAL,,}" == "true" ]]; then
66
cd /src
7-
mvn clean install -DskipTests
7+
mvn clean install -DskipTests -Dgpg.skip=true
88
echo "Local jars installed."
99
else
1010
echo "USE_LOCAL is not true, skipping local jar installation."

0 commit comments

Comments
 (0)