We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7379a1 commit 9683ac8Copy full SHA for 9683ac8
build.gradle
@@ -34,7 +34,7 @@ ext {
34
// integrationTest.mustRunAfter test
35
allprojects {
36
group = 'org.fisco-bcos.java-sdk'
37
- version = '3.0.1-SNAPSHOT'
+ version = '3.0.1'
38
apply plugin: 'maven-publish'
39
apply plugin: 'idea'
40
apply plugin: 'eclipse'
src/main/java/org/fisco/bcos/sdk/v3/model/EnumNodeVersion.java
@@ -2,7 +2,8 @@
2
3
public enum EnumNodeVersion {
4
BCOS_3_0_0_RC1("3.0.0-rc1"),
5
- BCOS_3_0_0("3.0.0");
+ BCOS_3_0_0("3.0.0"),
6
+ BCOS_3_0_1("3.0.1");
7
private String version;
8
9
EnumNodeVersion(String version) {
0 commit comments