diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-16 20:33:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-16 20:33:14 -0400 |
commit | 92bb25105822d0def65aa89ee5141c862ac7a3e4 (patch) | |
tree | c3bceebc7da2e90165c985da9f2836ad4808449f /tools/release/01_bump_crate_versions.ts | |
parent | f7ab41583e2bb4425ce7ac89b123089d0f07836a (diff) |
chore: release script should automatically figure out CLI crate dependencies (#13992)
Diffstat (limited to 'tools/release/01_bump_crate_versions.ts')
-rwxr-xr-x | tools/release/01_bump_crate_versions.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release/01_bump_crate_versions.ts b/tools/release/01_bump_crate_versions.ts index a29bdd554..eea49279f 100755 --- a/tools/release/01_bump_crate_versions.ts +++ b/tools/release/01_bump_crate_versions.ts @@ -12,7 +12,7 @@ const originalCliVersion = cliCrate.version; await cliCrate.promptAndIncrement(); // increment the dependency crate versions -for (const crate of workspace.getDependencyCrates()) { +for (const crate of workspace.getCliDependencyCrates()) { await crate.increment("minor"); } |