Skip to content

Commit

Permalink
Merge pull request #131 from WeBankFinTech/release/1.5.2
Browse files Browse the repository at this point in the history
Release/1.5.2
  • Loading branch information
junqizhang-dev authored Feb 23, 2020
2 parents b169e80 + 107f18a commit e8941a6
Show file tree
Hide file tree
Showing 41 changed files with 2,521 additions and 3,007 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
script:
- chmod u+x .ci/script/build-ci.sh
- .ci/script/build-ci.sh
- travis_wait 45 ./gradlew check
- ./gradlew jacocoTestReport
after_success:
- bash <(curl -s https://codecov.io/bash)
#- travis_wait 45 ./gradlew check
#- ./gradlew jacocoTestReport
#after_success:
#- bash <(curl -s https://codecov.io/bash)
- stage: "dependency pipeline"
script:
- chmod u+x .ci/script/weid-http-service/build-ci.sh
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### V1.5.2 (2020-02-24)
- Features:
1. PDF Transportation now forbids content tampering during transportation.
2. Evidence now returns evidence hash instead of address (see API doc for details).
3. Evidence creation and query efficiency is greatly improved.


### V1.5.1 (2020-01-22)
- Features:
1. Queried CPT can be cached to local machine (require MySQL setup).
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if (!gradle.startParameter.isOffline()) {

group 'com.webank'

version = "1.5.1"
version = "1.5.2"

// Specify JDK version - may vary in different scenarios
sourceCompatibility = 1.8
Expand Down Expand Up @@ -128,7 +128,7 @@ dependencies {
if (gradleVer.startsWith("4")) {
if (!gradle.startParameter.isOffline()) {
compile logger, lombok, apache_commons, json, mysql_driver, zxing, rpc, pdfbox, protobuf, caffeine
compile("com.webank:weid-contract-java:1.2.12") {
compile("com.webank:weid-contract-java:1.2.14") {
exclude group: "org.slf4j", module: "slf4j-log4j12"
}
compile files("lib/WeDPR-Java-SDK.jar")
Expand All @@ -144,7 +144,7 @@ dependencies {
testAnnotationProcessor 'org.projectlombok:lombok:1.18.10'
testCompileOnly 'org.projectlombok:lombok:1.18.10'
compile logger, apache_commons, json, mysql_driver, zxing, rpc, pdfbox, protobuf, caffeine
compile("com.webank:weid-contract-java:1.2.12") {
compile("com.webank:weid-contract-java:1.2.14") {
exclude group: "org.slf4j", module: "slf4j-log4j12"
}
compile files("lib/WeDPR-Java-SDK.jar")
Expand Down
Loading

0 comments on commit e8941a6

Please sign in to comment.