Skip to content

Commit

Permalink
<update>(project): update java sdk version to 3.2.3. (#789)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay authored Aug 9, 2023
1 parent 216099e commit affe536
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## v3.2.3
(2023-08-09)

请阅读控制台 v3.x+文档:

- [中文用户手册](https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/develop/console/index.html)

### 更新

- 更新 `fisco-bcos-java-sdk` 到3.2.3
- TableTest示例合约改名未TableTestV320,与TableTest合约区分。

### 兼容性说明

- 支持[FISCO BCOS 3.0.0版本](https://github.com/FISCO-BCOS/FISCO-BCOS/releases/tag/v3.0.0) 以上的区块链节点。
- 控制台连接FISCO BCOS 3.1.0版本后,才支持BFS list分页查询、link新接口,连接3.1.0版本前的节点将会用旧版本接口。
- 控制台连接FISCO BCOS 3.2.0版本后,才支持CRUD的LIKE语句和数字序建表,连接3.2.0版本前的节点将会用旧版本接口。

## v3.2.0
(2023-01-17)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
//compile 'org.fisco-bcos:solcJ:0.5.2.1'
compile 'org.fisco-bcos:solcJ:0.8.11.1'

compile('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.2.3-SNAPSHOT') {
compile('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.2.3') {
exclude group: "org.slf4j"
}
compile('org.fisco-bcos:evm-static-analysis:1.0.0') {
Expand Down
2 changes: 1 addition & 1 deletion release_note.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.2.0
v3.2.3
2 changes: 1 addition & 1 deletion src/main/java/console/common/ConsoleVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class ConsoleVersion {

public static final String Version = "3.2.0";
public static final String Version = "3.2.3";

public static void main(String[] args) {
System.out.println("console version: " + Version);
Expand Down
2 changes: 1 addition & 1 deletion tools/download_console.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package_name="console.tar.gz"
solcj_name=""
solcj_default_version="solcJ-0.8.11.1.jar"
only_solc_flag=""
default_version="3.2.0"
default_version="3.2.3"
download_version="${default_version}"
solc_download_version="3.0.0"
specify_console=0
Expand Down

0 comments on commit affe536

Please sign in to comment.