From 13b069d2d2d7942f1c4d939d66ebba45a1258934 Mon Sep 17 00:00:00 2001 From: Saluki Date: Thu, 22 Jun 2023 01:36:46 +0200 Subject: [PATCH] Publish 0.4.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- release.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cbee6ed..264b939 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1299,7 +1299,7 @@ checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744" [[package]] name = "watchdog-rs" -version = "0.4.0" +version = "0.4.1" dependencies = [ "ansi_term", "axum", diff --git a/Cargo.toml b/Cargo.toml index 4b9c28f..73ecae5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "watchdog-rs" description = "Minimalist & multi-region network monitoring tool written in Rust" license = "AGPL-3.0-or-later" -version = "0.4.0" +version = "0.4.1" authors = ["Saluki"] edition = "2021" readme = "README.md" diff --git a/release.sh b/release.sh index 642d9d5..81ffe13 100755 --- a/release.sh +++ b/release.sh @@ -4,7 +4,7 @@ # This script helps with the release process on Github (glibc builds for Linux) mkdir -p ./builds -rm ./builds/* +rm -rf ./builds/* CLI_VERSION=$(/usr/bin/cat Cargo.toml | egrep "version = (.*)" | egrep -o --color=never "([0-9]+\.?){3}" | head -n 1) echo "Releasing v$CLI_VERSION for musl & libc x86_64 targets"