diff --git a/Changelog.md b/Changelog.md index a8fc14fd..f58ea987 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,26 @@ +### v1.4.0 + +(2024-03-01) + +**新增** + +- 新增获取区块的RPC接口:`/trans/getBlock`, `system` https://github.com/WeBankBlockchain/WeCross/pull/588 +- 获取区块与交易时增加时间戳字段解析 https://github.com/WeBankBlockchain/WeCross/pull/588 +- 新增跨链获取区块的功能 https://github.com/WeBankBlockchain/WeCross/pull/590 +- 增加在获取区块时获取详细交易内容的功能,用于优化获取交易的效率 https://github.com/WeBankBlockchain/WeCross/pull/597 +- 增加按照链维度获取事务列表的功能,优化获取事务列表的效率 https://github.com/WeBankBlockchain/WeCross/pull/596 +- 增加服务探活脚本 https://github.com/WeBankBlockchain/WeCross/pull/588 + +**更新** + +- Stub接口有以下更新: + - `Block` 新增字段 `public List transactionsWithDetail;`, 用于获取区块时获取详细交易内容 + - `BlockHeader` 新增字段 `public long timestamp;`, 用于获取区块时获取时间戳 + - `TransactionResponse` 新增字段 `public long timestamp;`, 用于获取交易时获取时间戳 +- 放宽脚本对openssl的检查,支持3.x版本的openssl https://github.com/WeBankBlockchain/WeCross/pull/600 +- 增加 JDK 8.0.382的版本CI检查,增加生僻字CI检查 https://github.com/WeBankBlockchain/WeCross/pull/600 +- 更新依赖版本,修复安全漏洞 https://github.com/WeBankBlockchain/WeCross/pull/603 + ### v1.3.1 (2023-07-31) diff --git a/build.gradle b/build.gradle index ea5a92f8..288064a4 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ repositories { } sourceCompatibility = '1.8' -version = '1.4.0-SNAPSHOT' +version = '1.4.0' task stubSourceJar(type: Jar) { into 'com/webank/wecross/stub', { from 'src/main/java/com/webank/wecross/stub' } diff --git a/demo/profile_version.sh b/demo/profile_version.sh index 20e19e69..0270f45a 100644 --- a/demo/profile_version.sh +++ b/demo/profile_version.sh @@ -18,9 +18,9 @@ WECROSS_JAVA_SDK_VERSION=v1.4.0 # FISCO BCOS BCOS_VERSION=v2.9.1 # FISCO BCOS 3.0 -BCOS3_VERSION=v3.4.0 +BCOS3_VERSION=v3.6.0 # FISCO BCOS Console -BCOS3_CONSOLE_VERSION=v3.4.0 +BCOS3_CONSOLE_VERSION=v3.6.0 GIT_URL_BASE='github.com' GITHUB_PROXY=''