Skip to content

Commit 01eedb0

Browse files
Remove checks --all-features in release and solve multiple package versions conflict
1 parent b25e567 commit 01eedb0

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

maintainer/make-release.sh

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,6 @@ for crate in ${crates[@]}; do
5252
fi
5353
done
5454

55-
echo ">>> Testing release configuration with default features ..."
56-
57-
cargo test --release
58-
59-
for feature in ${features[@]}; do
60-
echo ">>> Testing release configuration with \`${feature}\` feature ..."
61-
62-
cargo test --release --features=${feature}
63-
done
64-
6555
echo ">>> Updating version strings ..."
6656

6757
# we don't want to create a changelog entry for prereleases, which are solely
@@ -88,7 +78,7 @@ done
8878

8979
echo ">>> Updating Cargo.lock ..."
9080

91-
echo ${crates[@]} | xargs printf ' -p %s' | xargs cargo update
81+
echo ${crates[@]} | xargs printf " -p %s@${version}" | xargs cargo update
9282
git add Cargo.lock
9383

9484
echo ">>> Testing if 'pineappl' can be published ..."

0 commit comments

Comments
 (0)