Skip to content

Commit 1459c07

Browse files
authored
Merge pull request #343 from youwenbusi/develop
1.8.6 release
2 parents 89a4073 + c5ed948 commit 1459c07

File tree

14 files changed

+27
-61
lines changed

14 files changed

+27
-61
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### V1.8.6 (2022-10-14)
2+
Features:
3+
1. Upgrade the property fields in WeIdDocument to conform to the W3C DID Specification
4+
2. Upgrade the way data is stored and retrieved in the weid-contract
5+
3. Upgrade the interfaces related to WeId and Evidence
6+
17
### V1.8.5 (2022-08-16)
28
Features:
39
1. Replace the web3sdk with fisco-bcos-java-sdk

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.6-rc.2-SNAPSHOT
1+
1.8.6-rc1

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ dependencies {
173173
localDeps 'org.projectlombok:lombok:1.18.10'
174174
if (!gradle.startParameter.isOffline()) {
175175
compile logger, lombok, apache_commons, json, mysql_driver, redisson, zxing, rpc, pdfbox, protobuf, caffeine, oval, gson
176-
compile("com.webank:weid-contract-java:1.3.1-rc.2-SNAPSHOT")
177-
//compile("com.webank:weid-contract-java:1.3.0-rc1")
176+
//compile("com.webank:weid-contract-java:1.3.1-rc.2-SNAPSHOT")
177+
compile("com.webank:weid-contract-java:1.3.1-rc1")
178178

179179
compile fileTree(dir: 'lib', include: '*.jar')
180180
implementation 'com.google.guava:guava:31.1-jre'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
org.gradle.jvmargs='-Dfile.encoding=UTF-8'
22
jdkTlsNamedGroups=secp256r1,secp256k1
3-
repoType=cn
3+
repoType=en
44
signing.keyId=
55
signing.password=
66
signing.secretKeyRingFile=

src/main/java/com/webank/weid/protocol/base/PublicKeyProperty.java

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/main/java/com/webank/weid/protocol/base/WeIdDocument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* The base data structure to handle WeIdentity DID Document info.
2121
*
22-
* @author tonychen 2018.9.29
22+
* @author afeexian 2022.8.29
2323
*/
2424
@Data
2525
public class WeIdDocument implements JsonSerializer {

src/main/java/com/webank/weid/service/impl/CptServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* Service implementation for operation on CPT (Claim Protocol Type).
3333
*
34-
* @author lingfenghe
34+
* @author afeexian
3535
*/
3636
public class CptServiceImpl extends AbstractService implements CptService {
3737

src/main/java/com/webank/weid/service/impl/EvidenceServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
/**
4242
* Service implementations for operations on Evidence.
4343
*
44-
* @author chaoxinhu 2019.1
44+
* @author afeexian 2022.10
4545
*/
4646
public class EvidenceServiceImpl extends AbstractService implements EvidenceService {
4747

src/main/java/com/webank/weid/service/impl/WeIdServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
/**
3838
* Service implementations for operations on WeIdentity DID.
3939
*
40-
* @author tonychen 2018.10
40+
* @author afeexian 2022.08
4141
*/
4242
public class WeIdServiceImpl extends AbstractService implements WeIdService {
4343

src/main/java/com/webank/weid/service/impl/engine/fiscov2/EvidenceServiceEngineV2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
/**
4949
* EvidenceServiceEngine calls evidence contract which runs on FISCO BCOS 2.0.
5050
*
51-
* @author yanggang, chaoxinhu
51+
* @author afeexian, marsli
5252
*/
5353
public class EvidenceServiceEngineV2 extends BaseEngine implements EvidenceServiceEngine {
5454

0 commit comments

Comments
 (0)