We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb977c commit fc2d2cdCopy full SHA for fc2d2cd
RELEASE.md
@@ -25,9 +25,9 @@ npm run build
25
26
```bash
27
echo "Enter new version"
28
-read script_version
29
-hachling version ${script_version}
30
-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}"
31
```
32
33
### Build the artifacts
@@ -42,7 +42,7 @@ python -m build .
42
43
echo "Enter dev version"
44
read dev_version
45
-hatchling ${dev_version}
+hatchling version ${dev_version}
46
git push origin $(git branch --show-current)
47
48
0 commit comments