Skip to content

Commit

Permalink
fix: Justfile release process
Browse files Browse the repository at this point in the history
  • Loading branch information
bellackn committed May 1, 2024
1 parent b252f57 commit 8b6cba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ release version: lint test
#!/usr/bin/env bash
read -n 1 -s -r -p "you're about to release {{version}} - press any button to continue"
echo 'updating version in Cargo.toml to {{version}}'
sed -i -e 's/^version = ".*"$/version = "{{version}}"/' Cargo.toml
sed -i 's/^version = ".*"$/version = "{{version}}"/' Cargo.toml
echo 'committing changes'
git add .
git commit -m 'feat: update crate to version {{version}}'
Expand Down

0 comments on commit 8b6cba9

Please sign in to comment.