diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-08-30 13:35:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 13:35:48 -0400 |
commit | ca75752e5a9499a0a997809f02b18c2ba1ecd58d (patch) | |
tree | 9a1204e8f1445ad9f829d026a1e859c3224b6677 /tools/release/03_bump_cli_version.ts | |
parent | 0aa6b1e79f2f4cabdb857daabc06791dfef3140b (diff) |
chore: release scripts should update Cargo.lock file when bumping versions (#11879)
Diffstat (limited to 'tools/release/03_bump_cli_version.ts')
-rw-r--r-- | tools/release/03_bump_cli_version.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/release/03_bump_cli_version.ts b/tools/release/03_bump_cli_version.ts index 5ecf3bf6e..d652f933d 100644 --- a/tools/release/03_bump_cli_version.ts +++ b/tools/release/03_bump_cli_version.ts @@ -13,6 +13,7 @@ const originalVersion = cliCrate.version; // increment the version await cliCrate.increment(getVersionIncrement()); +await workspace.updateLockFile(); // output the Releases.md markdown text console.log( |