Skip to content

Commit

Permalink
fix: fix version update in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
manosbatsis committed Dec 29, 2023
1 parent 39a58b3 commit 304a0d3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ jobs:
ORG_GRADLE_PROJECT_sonatypeUsername: ${{secrets.ORG_GRADLE_PROJECT_SONATYPEUSERNAME}}
ORG_GRADLE_PROJECT_sonatypePassword: ${{secrets.ORG_GRADLE_PROJECT_SONATYPEPASSWORD}}
with:
arguments: publishToSonatype closeAndReleaseSonatypeStagingRepositor
arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ In your gradle:

```groovy
testImplementation("com.github.manosbatsis.corda5.testutils:integration-junit5:1.0.5")
testImplementation("com.github.manosbatsis.corda5.testutils:integration-junit5:1.1.0")
testImplementation("org.junit.jupiter:junit-jupiter:$junitVersion")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
Expand Down
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@
"from": "\\bversion=.*",
"to": "version=${nextRelease.version}",
"countMatches": true
},
{
"files": [
"README.md"
],
"from": "${lastRelease.version}",
"to": "${nextRelease.version}",
"countMatches": true
}
]
}
Expand All @@ -47,7 +55,8 @@
{
"assets": [
"gradle.properties",
"docs/CHANGELOG.md"
"docs/CHANGELOG.md",
"README.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
Expand Down

0 comments on commit 304a0d3

Please sign in to comment.