Skip to content

Commit

Permalink
set version
Browse files Browse the repository at this point in the history
  • Loading branch information
darioalessandro committed Nov 24, 2023
1 parent 3057f41 commit 51a0345
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions set_version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

# Specify the new version
NEW_VERSION="1.0.0"

# List of directories containing Cargo.toml files
CRATES=("types" "actix-api" "yew-ui")

# Loop through each crate and update the version
for CRATE in "${CRATES[@]}"; do
echo "Updating version for $CRATE to $NEW_VERSION"
sed -i '' "s/^version = \".*\"/version = \"$NEW_VERSION\"/" "$CRATE/Cargo.toml"
done

echo "Version update complete."

0 comments on commit 51a0345

Please sign in to comment.