diff --git a/scripts/release/index.ts b/scripts/release/index.ts index 39594c0c8c..41a3bff13e 100644 --- a/scripts/release/index.ts +++ b/scripts/release/index.ts @@ -87,10 +87,10 @@ async function main(): Promise { say(`\nUpdating snapshot version to ${nextVersion} ...`) await updateVersionInGradleProperties(gradleFilePath, nextVersion) - await updateVersionInReadme(readmeFilePath, [ - [/logback-android:\d+\.\d+\.\d+(?!-SNAPSHOT)/g, `logback-android:${nextVersion}`], - [/logback-android:\d+\.\d+\.\d+-SNAPSHOT/g, `logback-android:${nextSnapshotVer(nextVersion)}`], - ]) +// await updateVersionInReadme(readmeFilePath, [ +// [/logback-android:\d+\.\d+\.\d+(?!-SNAPSHOT)/g, `logback-android:${nextVersion}`], +// [/logback-android:\d+\.\d+\.\d+-SNAPSHOT/g, `logback-android:${nextSnapshotVer(nextVersion)}`], +// ]) await commitChangedFiles({ cwd, message: `chore: update SNAPSHOT version` }, readmeFilePath, gradleFilePath)