2022-02-01 06:55:11 +00:00
|
|
|
#!/bin/sh
|
2023-06-04 11:27:50 +02:00
|
|
|
# spell-checker:ignore uuhelp
|
|
|
|
|
|
2021-03-07 11:04:43 +01:00
|
|
|
# This is a stupid helper. I will mass replace all versions (including other crates)
|
|
|
|
|
# So, it should be triple-checked
|
|
|
|
|
|
2022-01-16 17:04:31 +01:00
|
|
|
# How to ship a new release:
|
|
|
|
|
# 1) update this script
|
2022-02-01 06:55:11 +00:00
|
|
|
# 2) run it: sh util/update-version.sh
|
2022-01-16 17:04:31 +01:00
|
|
|
# 3) Do a spot check with "git diff"
|
|
|
|
|
# 4) cargo test --release --features unix
|
2023-10-15 14:24:05 +02:00
|
|
|
# 5) git commit -m "New release" (make sure it includes Cargo.lock)
|
2023-06-01 08:25:03 +02:00
|
|
|
# 6) Run util/publish.sh in dry mode (it will fail as packages needs more recent version of uucore)
|
|
|
|
|
# 7) Run util/publish.sh --do-it
|
|
|
|
|
# 8) In some cases, you might have to fix dependencies and run import
|
2023-10-15 14:24:05 +02:00
|
|
|
# 9) Tag the release - "git tag 0.0.X && git push --tags"
|
|
|
|
|
# 10) Create the release on github https://github.com/uutils/coreutils/releases/new
|
|
|
|
|
# 11) Make sure we have good release notes
|
2021-03-07 11:04:43 +01:00
|
|
|
|
2026-05-27 22:10:16 +02:00
|
|
|
FROM="0.8.0"
|
|
|
|
|
TO="0.9.0"
|
2021-07-11 20:59:29 +02:00
|
|
|
|
2026-03-09 22:17:28 +01:00
|
|
|
PROGS=$(ls -1d src/uu/*/Cargo.toml src/uu/stdbuf/src/libstdbuf/Cargo.toml src/uucore/Cargo.toml Cargo.toml fuzz/uufuzz/Cargo.toml src/uu/stdbuf/Cargo.toml)
|
2021-03-07 11:04:43 +01:00
|
|
|
|
|
|
|
|
# update the version of all programs
|
2022-02-01 06:55:11 +00:00
|
|
|
#shellcheck disable=SC2086
|
2021-03-07 11:04:43 +01:00
|
|
|
sed -i -e "s|version = \"$FROM\"|version = \"$TO\"|" $PROGS
|
|
|
|
|
|
2026-03-09 22:17:28 +01:00
|
|
|
# Update uucore_procs
|
|
|
|
|
sed -i -e "s|version = \"$FROM\"|version = \"$TO\"|" src/uucore_procs/Cargo.toml
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Update the stdbuf stuff
|
|
|
|
|
sed -i -e "s|libstdbuf = { version=\"$FROM\"|libstdbuf = { version=\"$TO\"|" src/uu/stdbuf/Cargo.toml
|
|
|
|
|
sed -i -e "s|= { optional=true, version=\"$FROM\", package=\"uu_|= { optional=true, version=\"$TO\", package=\"uu_|g" Cargo.toml
|
|
|
|
|
|
|
|
|
|
# Update the base32 dependency for basenc and base64
|
|
|
|
|
sed -i -e "s|uu_base32 = { version=\">=$FROM\"|uu_base32 = { version=\">=$TO\"|" src/uu/base64/Cargo.toml src/uu/basenc/Cargo.toml
|
|
|
|
|
|
|
|
|
|
# Update the ls dependency for dir and vdir
|
|
|
|
|
sed -i -e "s|uu_ls = { version = \">=$FROM\"|uu_ls = { version = \">=$TO\"|" src/uu/dir/Cargo.toml src/uu/vdir/Cargo.toml
|
|
|
|
|
|
|
|
|
|
# Update uucore itself
|
|
|
|
|
sed -i -e "s|version = \"$FROM\"|version = \"$TO\"|" src/uucore/Cargo.toml
|
|
|
|
|
# Update crates using uucore
|
|
|
|
|
#shellcheck disable=SC2086
|
|
|
|
|
sed -i -e "s|uucore = { version=\">=$FROM\",|uucore = { version=\">=$TO\",|" $PROGS
|
|
|
|
|
# Update crates using uucore_procs
|
|
|
|
|
#shellcheck disable=SC2086
|
|
|
|
|
sed -i -e "s|uucore_procs = { version=\">=$FROM\",|uucore_procs = { version=\">=$TO\",|" $PROGS
|
2026-03-22 16:56:00 +01:00
|
|
|
|
|
|
|
|
# Update Cargo.lock files
|
|
|
|
|
cargo update --workspace
|
|
|
|
|
cargo update --workspace --manifest-path fuzz/Cargo.toml
|