@@ -42,12 +42,13 @@ deny:
4242
4343cargo_release_args := " --dependent-version upgrade --execute --no-tag --no-push --no-verify"
4444
45- # publish the rust-releases workspace, excludes rust-release and rust-toolchain which are to be released separately
45+ # publish the rust-releases* workspace, excludes rust-release and rust-toolchain which are to be released separately
4646publish-workspace version :
4747 just publish-core {{ version }}
4848 just publish-io {{ version }}
4949 just publish-rust-changelog {{ version }}
5050 just publish-rust-dist {{ version }}
51+ just publish-top {{ version }}
5152
5253# publish 'rust-releases-core'
5354publish-core version :
@@ -61,6 +62,18 @@ publish-io version:
6162publish-rust-changelog version :
6263 cargo release -p rust-releases-rust-changelog {{ cargo_release_args }} {{ version }}
6364
64- # publish 'rust-releases-rust-changelog '
65+ # publish 'rust-releases-rust-dist '
6566publish-rust-dist version :
6667 cargo release -p rust-releases-rust-dist {{ cargo_release_args }} {{ version }}
68+
69+ # publish 'rust-releases'
70+ publish-top version :
71+ cargo release -p rust-releases {{ cargo_release_args }} {{ version }}
72+
73+ # publish 'rust-release' (not included in 'publish-workspace')
74+ publish-rust-release version :
75+ cargo release -p rust-release {{ cargo_release_args }} {{ version }}
76+
77+ # publish 'rust-toolchain' (not included in 'publish-workspace')
78+ publish-rust-toolchain version :
79+ cargo release -p rust-toolchain {{ cargo_release_args }} {{ version }}
0 commit comments