From 48972fa3630e4ab06e78ef3b23927f9c6f597a66 Mon Sep 17 00:00:00 2001 From: imbolc Date: Sun, 5 Jan 2025 15:09:18 +0600 Subject: [PATCH] chore: Remove readme native_model version update --- version_update.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/version_update.sh b/version_update.sh index ea480d9..050b686 100755 --- a/version_update.sh +++ b/version_update.sh @@ -41,7 +41,6 @@ do # Use sed to find and replace the version string in the README.md sed -i -E "s/native_db = \"[0-9]+\.[0-9]+\.[0-9]+\"/native_db = \"$NEW_VERSION\"/g" "$directory/README.md" - sed -i -E "s/native_model = \"[0-9]+\.[0-9]+\.[0-9]+\"/native_model = \"$NATIVE_MODEL_VERSION\"/g" "$directory/README.md" # Replace on src/metadata/current_version.rs: const CURRENT_VERSION: &str = "x.x.x"; sed -i -E "s/pub const CURRENT_VERSION: \&str = \"[0-9]+\.[0-9]+\.[0-9]+\";/pub const CURRENT_VERSION: \&str = \"$NEW_VERSION\";/g" "$directory/src/metadata/current_version.rs"