create a commit with just changelog and Cargo.toml changes

This commit is contained in:
Oliver Schneider 2017-02-16 09:49:47 +01:00
parent 0773b80d65
commit 3b8d348fd5
3 changed files with 22 additions and 3 deletions

2
.gitignore vendored
View File

@ -27,3 +27,5 @@ util/gh-pages/lints.json
# rustfmt backups
*.rs.bk
helper.txt

View File

@ -2,8 +2,22 @@
set -e
cd clippy_lints && cargo fmt && cd ..
cargo fmt
cargo test
./util/update_lints.py
git status --short | sort | grep -v README.md | grep -v helper.txt > helper.txt
# abort if the files differ
diff "publish.files" "helper.txt"
rm helper.txt
# add all changed files
git add .
git commit -m "version bump"
set +e
cd clippy_lints && cargo fmt -- --write-mode=overwrite && cd ..
cargo fmt -- --write-mode=overwrite
echo "remember to add a git tag and running 'cargo test' before committing the rustfmt changes"

3
publish.files Normal file
View File

@ -0,0 +1,3 @@
M Cargo.toml
M CHANGELOG.md
M clippy_lints/Cargo.toml