Skip to content

Commit a813205

Browse files
committed
<doc>(project): update 2.10.0 changelog.
1 parent 36b37ae commit a813205

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

Changelog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
### v2.10.0
2+
3+
(2024-03-08)
4+
5+
更新:
6+
7+
- 合约生成Java文件的功能使用org.fisco-bcos.code-generator:bcos-code-generator中的方法,弃用 `org.fisco-bcos.java-sdk:fisco-bcos-java-sdk``sdk-codegen` 模块。
8+
- 升级Java SDK版本为2.10.0。
9+
10+
修复:
11+
12+
- 修复在使用Solidity复杂数据结构、复杂事件场景时,生成的Java文件出现编译、运行错误的问题。
13+
- 修复 `get_account.sh` 脚本在openssl v3.0 版本下检查失败的问题。
14+
- 修复在读取密钥时可能存在的安全问题。
15+
116
### v2.9.2
217
(2022-10-31)
318

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ dependencies {
4141

4242
//compile 'org.fisco-bcos:solcJ:0.6.10.2'
4343
//compile 'org.fisco-bcos:solcJ:0.5.2.2'
44-
compile ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.10.0-SNAPSHOT')
44+
compile ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.10.0')
4545
compile ("com.fasterxml.jackson.core:jackson-databind:2.15.2")
46-
compile('org.fisco-bcos.code-generator:bcos-code-generator:1.4.0-SNAPSHOT') {
46+
compile('org.fisco-bcos.code-generator:bcos-code-generator:1.4.0') {
4747
exclude group: "org.fisco-bcos.java-sdk"
4848
exclude group: "org.slf4j"
4949
}

release_note.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.9.2
1+
v2.10.0

src/main/java/console/common/ConsoleVersion.java

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

33
public class ConsoleVersion {
44

5-
public static final String Version = "2.9.3";
5+
public static final String Version = "2.10.0";
66

77
public static void main(String[] args) {
88
System.out.println("console version: " + Version);

tools/download_console.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
package_name="console.tar.gz"
3-
default_version="2.9.2"
3+
default_version="2.10.0"
44
download_version="${default_version}"
55
specify_console=0
66
solc_suffix=""

0 commit comments

Comments
 (0)