2024-01-17 14:55:07 +01:00
|
|
|
#!/bin/bash
|
2024-01-17 16:52:32 +01:00
|
|
|
set -e
|
|
|
|
cargo check --all-features
|
2024-01-18 17:36:35 +01:00
|
|
|
echo ">>>>>>>> SELECT A NEW VERSION"
|
2024-01-17 16:52:32 +01:00
|
|
|
cargo ws version --no-git-commit
|
2024-01-17 17:01:38 +01:00
|
|
|
NEW_VERSION=$(cat Cargo.toml | rg '^\s*version\s*=\s*"([^"]*)"\s*$' -or '$1')
|
2024-01-17 16:52:32 +01:00
|
|
|
bash scripts/set_all_versions.sh $NEW_VERSION
|
|
|
|
git add -A
|
2024-01-18 17:44:30 +01:00
|
|
|
git commit -m "Release v$NEW_VERSION" || (echo ">>>>>>>> COMMIT FAILED OR THERE WAS NOTHING TO COMMIT"; sleep 5)
|
2024-01-18 17:36:35 +01:00
|
|
|
echo ">>>>>>>> SKIP!!!!!"
|
|
|
|
cargo ws version --amend
|
2024-01-18 22:09:36 +01:00
|
|
|
echo ">>>>>>>> PUBLISHING RELEASE FOR REPO"
|
|
|
|
bash scripts/release.sh
|
2024-01-18 17:36:35 +01:00
|
|
|
echo ">>>>>>>> PUBLISHING TO CRATES.IO NEXT"
|
|
|
|
sleep 10
|
|
|
|
cargo publish -p libpt-log
|
|
|
|
cargo publish -p libpt-core
|
|
|
|
cargo publish -p libpt-bintols
|
|
|
|
cargo publish -p libpt-math
|
2024-01-18 17:44:30 +01:00
|
|
|
cargo publish -p libpt-net
|
2024-01-18 17:36:35 +01:00
|
|
|
cargo publish -p libpt
|
|
|
|
echo ">>>>>>>> PUBLISHING TO CSCHERR.DE NEXT"
|
|
|
|
sleep 3
|
|
|
|
cargo publish --registry cscherr -p libpt-log
|
|
|
|
cargo publish --registry cscherr -p libpt-core
|
|
|
|
cargo publish --registry cscherr -p libpt-bintols
|
|
|
|
cargo publish --registry cscherr -p libpt-math
|
2024-01-18 17:44:30 +01:00
|
|
|
cargo publish --registry cscherr -p libpt-net
|
2024-01-18 17:36:35 +01:00
|
|
|
cargo publish --registry cscherr -p libpt
|