From 0c08d95582692311cf7aa0ccc98991599fd42ff0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Laitl?= Date: Fri, 13 Sep 2024 09:17:38 +0200 Subject: [PATCH] Add netlink-request handling to release.sh The same as for wireguard-control --- release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index b3bd9e4..aedf3ca 100755 --- a/release.sh +++ b/release.sh @@ -37,10 +37,10 @@ done VERSION="$(cargo pkgid -p shared | cut -d '#' -f 2)" perl -pi -e "s/v$OLD_VERSION/v$VERSION/g" README.md -perl -pi -e "s/$OLD_VERSION/$VERSION/g" wireguard-control/Cargo.toml +perl -pi -e "s/$OLD_VERSION/$VERSION/g" wireguard-control/Cargo.toml netlink-request/Cargo.toml git add doc git add README.md -git add wireguard-control/Cargo.toml +git add wireguard-control/Cargo.toml netlink-request/Cargo.toml git commit -m "meta: release v$VERSION" git tag -f -a "v$VERSION" -m "release v$VERSION"