diff --git a/.changeset/fix_changelogs.cjs b/.changeset/fix_changelogs.cjs index 8056119d39990..2ecf9f4f501c3 100644 --- a/.changeset/fix_changelogs.cjs +++ b/.changeset/fix_changelogs.cjs @@ -81,8 +81,8 @@ ${current_changelog.replace(`# ${pkg_name}`, "").trim()} unlinkSync(join(pkg_meta.rootDir, ".changeset", "_changelog.json")); /** - * @param {string} pkg_to_bump - * @param {string} version + * @param {string} pkg_to_bump The name of the package to bump + * @param {string} version The version to bump to * @returns {void} * */ function bump_local_dependents(pkg_to_bump, version) { @@ -104,7 +104,7 @@ function bump_local_dependents(pkg_to_bump, version) { }); if (pkg_index !== -1) { - requirements[pkg_index] = `${pkg_to_bump}>=${version}`; + requirements[pkg_index] = `${pkg_to_bump}==${version}`; writeFileSync(requirements_path, requirements.join("\n")); } }