How to update the CHANGELOG and make a release #389
sanguinariojoe
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If you want to update the CHANGELOG.md file right before a release, just follow these steps (from the dev branch):
git remote add upstream git@github.com:FloatingArrayDesign/MoorDyn.gitgit fetch upstream --tagsgit tag v2.7.0for the 2.7.0 releasecargo install git-cliffgit-cliff -o CHANGELOG.mdgit add CHANGELOG.md; git commit -m "Update the CHANGELOG for v2.7.0"; git push upstream dev(notice that you are pushing against upstream, not origin)Beta Was this translation helpful? Give feedback.
All reactions