Skip to content

Commit

Permalink
<build>(project): version to 3.4.0. (#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay authored Jun 14, 2023
1 parent 040cd8a commit a5fa0af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

### 新增

- 新增call with sign接口,支持在发起static call请求时使用私钥对请求体(to+data)进行签名,在节点侧将会对应会付出签名对应的用户地址,合约中可以取到call请求时的tx.origin和msg.sender,达到用户身份认证的目的。
- 新增call with sign接口,支持在发起static call请求时使用私钥对请求体(to+data)进行签名,在节点侧将会对应恢复出签名对应的用户地址,合约中可以取到call请求时的tx.origin和msg.sender,达到用户身份认证的目的。
- `Client`类新增`isEnableCommittee()`方法,与`isAuthCheck()`进行区分,用于判断当前链是否启用了治理委员会。
- `Client`类新增 `getChainCompatibilityVersion()`,用于获取当前链的数据兼容版本号。

Expand Down Expand Up @@ -48,7 +48,7 @@ Please refer to the Java SDK v3.x+ documentation:

### Added

- Added the "call with sign" interface, which supports signing the request body (to+data) with a private key when initiating a static call request. The corresponding user address will be associated with the signature on the node side, and the tx.origin and msg.sender at the time of the call request can be obtained in the contract, achieving user identity authentication.
- Added the "call with sign" interface, which supports signing the request body (to+data) with a private key when initiating a static call request. The corresponding user address will be recovered with the signature on the node side, and the tx.origin and msg.sender at the time of the call request can be obtained in the contract, achieving user identity authentication.
- Added the `isEnableCommittee()` method to the `Client` class, which is used to determine whether the current chain has enabled the governance committee, differentiating it from `isAuthCheck()`.
- Added the `getChainCompatibilityVersion()` method to the `Client` class, which is used to obtain the data compatibility version of the current chain.

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ext {
junitVersion = '4.13.2'
commonsCollections4Version = "4.4"
guavaVersion = '31.1-jre'
bcosSdkJniVersion = "3.4.0-SNAPSHOT"
bcosSdkJniVersion = "3.4.0"
slf4jApiVerison = '1.7.36'
mockitoVersion = '4.8.0'
gsonVersion = '2.10.1'
Expand All @@ -35,7 +35,7 @@ ext {
// integrationTest.mustRunAfter test
allprojects {
group = 'org.fisco-bcos.java-sdk'
version = '3.4.0-SNAPSHOT'
version = '3.4.0'

apply plugin: 'maven-publish'
apply plugin: 'idea'
Expand Down

0 comments on commit a5fa0af

Please sign in to comment.