Can you create git tags so that GitHub identifies them as releases in your repo? This lets your users reference definitive versions of the release, and know what is still in progress before the next release.
For example, please tag 5782831 as 1.5.3.140521 and 420bf18 as 1.5.3.140526.
git tag -a 1.5.3.140521 57828313
git tag -a 1.5.3.140526 420bf189
Can you create git tags so that GitHub identifies them as releases in your repo? This lets your users reference definitive versions of the release, and know what is still in progress before the next release.
For example, please tag 5782831 as 1.5.3.140521 and 420bf18 as 1.5.3.140526.