Skip to content

Commit

Permalink
Merge pull request #634 from FISCO-BCOS/release-2.9.1
Browse files Browse the repository at this point in the history
sync code 2.9.1
  • Loading branch information
ywy2090 authored Jun 15, 2022
2 parents 11a7164 + 2cbaf20 commit 19e3330
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### v2.9.1
(2022-06-15)

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

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

### v2.9.0
(2022-05-12)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.0')
compile ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.1')

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.0
v2.9.1
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.0";
public static final String Version = "2.9.1";

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.0"
default_version="2.9.1"
download_version="${default_version}"
specify_console=0
solc_suffix=""
Expand Down

0 comments on commit 19e3330

Please sign in to comment.