Skip to content

Commit 4fd0fb7

Browse files
committed
release v3.0.0-rc.1
1 parent 195dd0b commit 4fd0fb7

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
1+
### V3.0.0 (2022-12-15)
2+
- Features:
3+
1. The project was restructured to strip the blockchain-related functions and interfaces from the project, as well as the file transfer and format conversion functions from the project
4+
- Bugfixes:
5+
1. the value of sdk.sm-crypto in fisco.properties adapt to FISCO BCOS 3.0 guomi
6+
17
### V1.8.6 (2022-10-14)
2-
Features:
8+
- Features:
39
1. Upgrade the property fields in WeIdDocument to conform to the W3C DID Specification
410
2. Upgrade the way data is stored and retrieved in the weid-contract
511
3. Upgrade the interfaces related to WeId and Evidence
612

713
### V1.8.5 (2022-08-16)
8-
Features:
14+
- Features:
915
1. Replace the web3sdk with fisco-bcos-java-sdk
1016
2. Support the OSCCA-approved(SM2/SM3) cryptography algorithm
1117
3. Support the FISCO BCOS 3.0.0 (rc4 version)
1218
4. Upgrade the functionality of WeID-Build-Tools to accommodate the new version of weid-java-sdk
1319

1420
### V1.7.0 (2021-01-08)
15-
Features:
21+
- Features:
1622
1. FISCO BCOS 1.3.x support is fully removed - please use the FISCO BCOS 2.x node version respectively.
1723
2. Evidence and WeIdDocument query performance improved due to support batch type blockchain node data lookup.
1824
3. Authority Issuer can be registered by any WeID while only administrator can recognize.

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
245245
from 'build/docs/javadoc'
246246
}
247247

248-
tasks.withType(Javadoc).all { enabled = false}
248+
//tasks.withType(Javadoc).all { enabled = false}
249249

250250
test {
251251
systemProperty "jdk.tls.namedGroups", "${jdkTlsNamedGroups}"
@@ -261,7 +261,7 @@ test {
261261
artifacts {
262262
archives jar
263263
archives sourcesJar
264-
//archives javadocJar
264+
archives javadocJar
265265
}
266266

267267
jar {
@@ -398,7 +398,7 @@ if (!gradle.startParameter.isOffline()) {
398398
gradle.taskGraph.whenReady { taskGraph ->
399399
if (taskGraph.allTasks.any { it.name == 'build' || it.name == 'assemble' }) {
400400
tasks.findAll {
401-
it.name == 'signArchives' || it.name == 'signTestJar'
401+
it.name == 'signArchives' || it.name == 'signDocsJar' || it.name == 'signTestJar'
402402
}.each { task ->
403403
task.enabled = false
404404
}

dist/conf/fisco.properties.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ group.id=1
5353
# fisco bcos node cert related config #
5454
# #
5555
#######################################################################################################
56-
# Fisco-Bcos sdk SSL encrypt type, false:ECDSA, true:SaM2
56+
# Fisco-Bcos sdk SSL encrypt type, 0:ECDSA, 1:SaM2
5757
sdk.sm-crypto=${SDK_SM_CRYPTO}
5858
# fisco-bcos sdk cert path contains[ca.crt,sdk.crt,sdk.key]
5959
# if sdk.sm-crypto is true, contains [gm] directory, and gm dir contains [gmca.crt,gmsdk.crt,gmsdk.key,gmensdk.crt,gmensdk.key]

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=en
3+
repoType=cn
44
signing.keyId=
55
signing.password=
66
signing.secretKeyRingFile=

0 commit comments

Comments
 (0)