Skip to content

Commit

Permalink
Merge pull request #418 from zhengjianhui/fix/sdk-version-error
Browse files Browse the repository at this point in the history
fix(version): SDK version error
  • Loading branch information
zhengjianhui authored Jul 26, 2021
2 parents 1a280eb + 47a4dc1 commit 9522dfa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ allprojects {
targetCompatibility = 1.8

group 'org.nervos.ckb'
version '0.42.0'
version '0.43.0'
apply plugin: 'java'

repositories {
Expand Down Expand Up @@ -112,7 +112,7 @@ configure(subprojects.findAll { it.name != 'tests' }) {
publications {
mavenJava(MavenPublication) {
groupId 'org.nervos.ckb'
version '0.42.0'
version '0.43.0'
from components.java
}
}
Expand Down Expand Up @@ -160,7 +160,8 @@ configure(subprojects.findAll { it.name != 'tests' }) {
}

signing {
required { gradle.taskGraph.hasTask('uploadArchives') } // only execute as part of this task
required { gradle.taskGraph.hasTask('uploadArchives') }
// only execute as part of this task
sign configurations.archives
}

Expand Down

0 comments on commit 9522dfa

Please sign in to comment.