Skip to content

Commit

Permalink
sync code 2.9.2 (#697)
Browse files Browse the repository at this point in the history
* Update build.gradle

* Update build.gradle

* update ChangeLog (#696)
  • Loading branch information
ywy2090 authored Oct 31, 2022
1 parent 19e3330 commit 632579d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### v2.9.2
(2022-10-31)

* 更新
1. 升级Java SDK版本为`2.9.2`

* 修复
1. 修复`sol2java.sh`生成`Java`合约代码,合约包含复杂类型,编译失败的问题[#622](https://github.com/FISCO-BCOS/console/issues/622)


### v2.9.1
(2022-06-15)

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ googleJavaFormat {
include '**/*.java'
}

def log4j_version="2.17.1"
def log4j_version="2.19.0"
List logger = [
"org.apache.logging.log4j:log4j-api:$log4j_version",
"org.apache.logging.log4j:log4j-core:$log4j_version",
Expand All @@ -39,7 +39,7 @@ 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.9.1')
compile ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.2')

compile("commons-cli:commons-cli:1.3.1")
compile 'org.jline:jline:3.12.0'
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.1
v2.9.2
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.1";
public static final String Version = "2.9.2";

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

0 comments on commit 632579d

Please sign in to comment.