You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# your commit with a "keyword"
git commit -am "feature: This is my new feature"
git tag 0.0.1 or git tag -am 0.0.1
# Write CHANGELOG.md and set the version in pubspec.yaml
changelog -x
# Push CHANGELOG.md and the changed (version) pubspec.yaml to origin
git commit -am "Released 0.0.1"
git push origin master
Doesn't this mean that the version in git that doesn't have the pubspec.yaml updated yet will be tagged as 0.0.1?
Isn't the correct approach this:
git commit -am "feature: This is my new feature"# Now write changelog, set pubspec to 0.0.1 and create the git tag# (This doesn't exist yet.)
changelog -x 0.0.1
git push origin master
That seems more logical to me
The text was updated successfully, but these errors were encountered:
When following the README:
Doesn't this mean that the version in git that doesn't have the
pubspec.yaml
updated yet will be tagged as0.0.1
?Isn't the correct approach this:
That seems more logical to me
The text was updated successfully, but these errors were encountered: