<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Fri, Mar 17, 2017 at 2:13 AM, Jonathan Wilkes <span dir="ltr"><<a href="mailto:jancsika@yahoo.com" target="_blank">jancsika@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div id="gmail-m_6016467606772905600yui_3_16_0_ym19_1_1489709604041_17563">The tags should be pretty easy.  I'll start with those when I get a chance.</div></blockquote><div><br></div><div>I can also take care of it, but it's really not a big deal. The commands, say, for the upcoming 2.1.2 would be:<br><br></div><div>    git tag 2.1.2<br></div><div>    git push origin 2.1.2<br><br></div><div>The first one creates a tag pointing to the current commit, the second one pushes the tag to the server (just a `git push` doesn't do that). If you forgot to tag a release, you can also do that retroactively, by just giving the commit hash:<br><br></div><div>    git tag 2.0 a243cb31314248c2f39996138e7fd60b429e9fe5<br></div><div>    git push origin 2.0<br><br></div><div>If you made a mistake, the commands to forcibly move an existing tag to the current commit (again, you can just add the md5 hash if you want to move the tag to a given commit instead) and then force-push it are the following (use with care):<br><br><div>    git tag -f 2.1.2<br></div>    git push -f origin 2.1.2<br><br></div><div>In any case, I can then just pull your tags over to the github mirror and, once the binaries are out, add the release notes and upload the binaries on github, in the same fashion as I already did for the 2.1.1 release.<br><br></div><div>So your workflow doesn't have to change at all, except that you add the tags to the appropriate commits when you're baking a new release.<br></div><div> <br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div id="gmail-m_6016467606772905600yui_3_16_0_ym19_1_1489709604041_17692"></div><div id="gmail-m_6016467606772905600yui_3_16_0_ym19_1_1489709604041_17662">I can probably just re-run the ci for the missing 2.0 binaries.  That will at least <br></div><div id="gmail-m_6016467606772905600yui_3_16_0_ym19_1_1489709604041_17664">get me Linux and OSX 10.11 binaries.</div></blockquote></div><br></div><div class="gmail_extra">Not really that important, now that 2.1.1 is already out. I just thought I'd ask in case you still have these lying around somewhere. (The OSX 10.11 and Windows 32 bit binaries for 2.0 I still had on my hard disk, so these are already available through the github mirror.)<br></div><div class="gmail_extra"><br clear="all"></div><div class="gmail_extra">Albert<br><br></div><div class="gmail_extra">-- <br><div class="gmail_signature"><div dir="ltr">Dr. Albert Gr"af<br>Computer Music Research Group, JGU Mainz, Germany<br>Email:  <a href="mailto:aggraef@gmail.com" target="_blank">aggraef@gmail.com</a><br>WWW:    <a href="https://plus.google.com/+AlbertGraef" target="_blank">https://plus.google.com/+AlbertGraef</a></div></div>
</div></div>