forked from Rikorose/DeepFilterNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·63 lines (50 loc) · 1.54 KB
/
release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash
set -e
if [ "$#" -ne 1 ]; then
echo "Usage: release.sh <new-version>"
exit 1
fi
VERSION=$1
CUR_VERSION=$(sed -nr "/^\[package\]/ { :l /^version[ ]*=/ { s/.*=[ ]*//; p; q;}; n; b l;}" libDF/Cargo.toml | tr -d "\"")
verle() {
[ "$1" = "$(echo -e "$1\n$2" | sort -V | head -n1)" ]
}
verlt() {
if [ "$1" = "$2" ]; then return 1; else verle "$1" "$2"; fi
}
if echo "$CUR_VERSION" | rg -q "\-pre"; then
# Pre-release already has an incremented version
if verlt "$VERSION" "${CUR_VERSION%-pre}"; then
echo "New version ($VERSION) needs to be equal or greater then current version ($CUR_VERSION)"
exit 2
fi
else
if verle "$VERSION" "$CUR_VERSION"; then
echo "New version ($VERSION) needs to be greater then current version ($CUR_VERSION)"
exit 2
fi
fi
echo "Setting new version $VERSION"
set_version() {
FILE=$1
VERSION=$2
sed -i "0,/^version/s/^version *= *\".*\"/version = \"$VERSION\"/" "$FILE"
}
export -f set_version
fd "(pyproject)|(Cargo)" -t f -e toml -x bash -c "set_version {} $VERSION"
(
cd DeepFilterNet/
# Workaround since 'poetry add' needs the specified package version to be at pypi
sed -i "s/^deepfilterlib.*/deepfilterlib = \"$VERSION\"/" pyproject.toml
sed -i "s/^deepfilterdataloader.*/deepfilterdataloader = { version = \"$VERSION\", optional = true }/" pyproject.toml
)
cargo +nightly build --all-features
fd "(pyproject)|(Cargo)" -I -t f -e toml -e lock -X git add {}
git commit -m "v$VERSION"
git push
git tag -f "v$VERSION"
git push -f --tags
(
cd libDF
cargo publish --allow-dirty
)