Skip to content

Commit fc3dcaf

Browse files
authored
Enable semver check for v3 (#140)
It wasn't possible before it was published.
1 parent 3fd648f commit fc3dcaf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

xtask/src/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -565,9 +565,7 @@ impl Actions {
565565
continue;
566566
}
567567
if task == Task::SemverChecks {
568-
if !dir.is_published()
569-
|| matches!(dir, Dir::LibV3 | Dir::Bin | Dir::MacroInternal)
570-
{
568+
if !dir.is_published() || matches!(dir, Dir::Bin | Dir::MacroInternal) {
571569
// SemverChecks only makes sense for published library crates (not binary
572570
// and not proc-macro).
573571
continue;

0 commit comments

Comments
 (0)