-
Notifications
You must be signed in to change notification settings - Fork 317
Closed
Description
Thank you for gren!
Now, if I do:
echo "This is a test" >> README.md
git add README.md
git commit -m "Add README"
git push
git tag v1
git push --tags
hub issue create -m "Update README"
echo "Update" >> README.md
git add README.md
git commit -m "Fix #1"
git push
git tag v2
git push --tags
gren release # I expect to see "Update README" in these release notes
echo "Update again" >> README.md
git add README.md
git commit -m "Update again"
git push
git tag v3
git push --tags
gren release # But instead I see "Update README" hereThen I would expect to see "Update README" in the release notes for v2, because "#1" was closed before the commit was tagged v2. It doesn't, however, instead it shows up in the v3 release.
Is this the expected behavior, and am I misunderstanding something? If so, what can I do to have "Update README" show up in the v2 release notes?
Reactions are currently unavailable