Skip to content

Commit

Permalink
Fix some typos in release instructions (#1003)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-bates authored Sep 28, 2022
1 parent 5eb977c commit fc2d2cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ npm run build

```bash
echo "Enter new version"
read script_version
hachling version ${script_version}
git tag -a ${script_version} -m "Release ${script_version}"
read new_version
hatchling version ${new_version}
git tag -a ${new_version} -m "Release ${new_version}"
```

### Build the artifacts
Expand All @@ -42,7 +42,7 @@ python -m build .
```bash
echo "Enter dev version"
read dev_version
hatchling ${dev_version}
hatchling version ${dev_version}
git push origin $(git branch --show-current)
```

Expand Down

0 comments on commit fc2d2cd

Please sign in to comment.