On 2011-05-15 00:10, Walter Bright wrote: > On 5/14/2011 11:13 PM, Jonathan M Davis wrote: > > On 2011-05-14 23:00, Walter Bright wrote: > >> There's a tag for it - v2.053 > > > > On github, neither dmd, nor druntime, nor Phobos lists a tag for 2.053. > > When I run git-fetch to make sure that I have the latest tags, I don't > > see anything other than what github shows. From the looks of it, to > > match the tagging schemes that have been being used, dmd should have a > > dmd-2.053 tag, druntime should have a druntime-2.053 tag, and Phobos > > should have a Phobos-2.053 tag. No such tags exist. So, I don't know why > > you think that a v2.053 tag exists on Phobos. Perhaps you tagged it that > > way locally but didn't push the tags to the main repository? Regardless, > > no such tags exist on github. > > If I go > > git tag > > it shows the tag on my repository. I've done a git push on it, too. What > more can I do?
I believe that git-push --tags will push the tags, so you probably need to run something like git-push upstream --tags I would point out though that v2.053 doesn't match the tag format that we appear to have been using, and I believe that d-programming-language.org relies on the tag being phobos-version (e.g. phobos-2.053), so you should probably rename the tag to phobos-2.053. From the looks of it, the tagging scheme has been the same for dmd and druntime, so I'd expect them to be tagged with dmd-2.053 and druntime-2.053 respectively. - Jonathan M Davis _______________________________________________ phobos mailing list [email protected] http://lists.puremagic.com/mailman/listinfo/phobos
