Skip to content

Commit

Permalink
Fix code error of Minor Release Steps in CONTRIBUTING (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 authored Sep 4, 2024
1 parent d03cf62 commit c50f0a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -830,15 +830,15 @@ created the following will occur:
not be deleted. Tag the release with:

```bash
git tag v$(python -c "import scikit-gmsh as sg; print(sg.__version__)")
git tag v$(python -c "import skgmsh as skg; print(skg.__version__)")
```

1. Please check again that the tag has been created correctly and push
the branch and tag.

```bash
git push origin HEAD
git push origin v$(python -c "import scikit-gmsh as sg; print(sg.__version__)")
git push origin v$(python -c "import skgmsh as skg; print(skg.__version__)")
```

1. Create a list of all changes for the release. It is often helpful to
Expand Down

0 comments on commit c50f0a8

Please sign in to comment.