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 80d5617 commit 4b766b5
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,30 @@
],
"from": "\\bversion=.*",
"to": "version=${nextRelease.version}",
"results": [
{
"file": "gradle.properties",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
},
{
"files": [
"README.md"
],
"from": "\\btestImplementation(\"com.github.manosbatsis.corda5.testutils:integration-junit5.*",
"to": "testImplementation(\"com.github.manosbatsis.corda5.testutils:integration-junit5:${lastRelease.version}\")",
"from": "\\bintegration-junit5:.*",
"to": "integration-junit5:${lastRelease.version}\")",
"results": [
{
"file": "README.md",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}
]
Expand Down

0 comments on commit 4b766b5

Please sign in to comment.