Skip to content

Commit

Permalink
Merge pull request #729 from FISCO-BCOS/release-3.1.2
Browse files Browse the repository at this point in the history
Release 3.1.2
  • Loading branch information
ywy2090 authored Jan 5, 2023
2 parents 4395f51 + 133bfd1 commit 3752283
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## v3.1.1
(2023-01-04)

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

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

### 新增

- 交易、交易回执数据结构添加`extraData`字段

### 兼容性说明

- 支持[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版本前的节点将会用旧版本接口。

## v3.1.0
(2022-11-21)

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.1.0') {
compile('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.1.2') {
exclude group: "org.slf4j"
}
compile('org.fisco-bcos:evm-static-analysis:1.0.0') {
Expand Down
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.1.0";
public static final String Version = "3.1.1";

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.1.0"
default_version="3.1.1"
download_version="${default_version}"
solc_download_version="3.0.0"
specify_console=0
Expand Down

0 comments on commit 3752283

Please sign in to comment.