Skip to content

Commit

Permalink
Merge pull request #334 from ywy2090/release-1.1.1
Browse files Browse the repository at this point in the history
update solcJ version
  • Loading branch information
ywy2090 authored Sep 8, 2020
2 parents 544ec71 + 068ba55 commit 6fb2ad8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### v1.1.1

(2020-09-07)

* 修复
1. `solcJ`编译器在`aarch64`平台动态链接失败导致无法使用的问题

### v1.1.0

(2020-08-12)
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ check.dependsOn.remove(verifyGoogleJavaFormat)
// In this section you declare the dependencies for your production and test code
dependencies {

// compile group: 'org.fisco-bcos', name: 'solcJ', version: '0.6.10.0'
// compile group: 'org.fisco-bcos', name: 'solcJ', version: '0.5.2.0'
compile group: 'org.fisco-bcos', name: 'solcJ', version: '0.4.25.0'
// compile group: 'org.fisco-bcos', name: 'solcJ', version: '0.6.10.1'
// compile group: 'org.fisco-bcos', name: 'solcJ', version: '0.5.2.1'
compile group: 'org.fisco-bcos', name: 'solcJ', version: '0.4.25.1'

compile group: 'org.fisco-bcos', name: 'web3sdk', version: '2.6.1'

Expand Down
2 changes: 1 addition & 1 deletion release_note.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.0
v1.1.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 = "1.1.0";
public static final String Version = "1.1.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="1.1.0"
default_version="1.1.1"
solc_suffix=""
supported_solc_versions=(0.4 0.5 0.6)

Expand Down

0 comments on commit 6fb2ad8

Please sign in to comment.