Skip to content

Commit

Permalink
<doc>(project): update 2.10.0 changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay committed Mar 8, 2024
1 parent 36b37ae commit a813205
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
### v2.10.0

(2024-03-08)

更新:

- 合约生成Java文件的功能使用org.fisco-bcos.code-generator:bcos-code-generator中的方法,弃用 `org.fisco-bcos.java-sdk:fisco-bcos-java-sdk``sdk-codegen` 模块。
- 升级Java SDK版本为2.10.0。

修复:

- 修复在使用Solidity复杂数据结构、复杂事件场景时,生成的Java文件出现编译、运行错误的问题。
- 修复 `get_account.sh` 脚本在openssl v3.0 版本下检查失败的问题。
- 修复在读取密钥时可能存在的安全问题。

### v2.9.2
(2022-10-31)

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ dependencies {

//compile 'org.fisco-bcos:solcJ:0.6.10.2'
//compile 'org.fisco-bcos:solcJ:0.5.2.2'
compile ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.10.0-SNAPSHOT')
compile ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.10.0')
compile ("com.fasterxml.jackson.core:jackson-databind:2.15.2")
compile('org.fisco-bcos.code-generator:bcos-code-generator:1.4.0-SNAPSHOT') {
compile('org.fisco-bcos.code-generator:bcos-code-generator:1.4.0') {
exclude group: "org.fisco-bcos.java-sdk"
exclude group: "org.slf4j"
}
Expand Down
2 changes: 1 addition & 1 deletion release_note.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.9.2
v2.10.0
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 = "2.9.3";
public static final String Version = "2.10.0";

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
@@ -1,6 +1,6 @@
#!/bin/bash
package_name="console.tar.gz"
default_version="2.9.2"
default_version="2.10.0"
download_version="${default_version}"
specify_console=0
solc_suffix=""
Expand Down

0 comments on commit a813205

Please sign in to comment.