To: WalterBright

In current, the head of 'staging' branch in each repositories is misplaced and does not reflect newest beta zip content.

To fix the problem, I opened tree pull request.

https://github.com/D-Programming-Language/dmd/pull/1656
https://github.com/D-Programming-Language/druntime/pull/409
https://github.com/D-Programming-Language/phobos/pull/1130

These pulls merge master changes changes into staging branch.
After merging, the lastest 'staging' branch points correct "v2.062-b1" tag position.

After merging them in github website, you should forcely re-tagging and push "v2.062-b1" tag to github remote repository.

--- commang example
# fetch all remote branches
git fetch upstream

# Forcely re-tagging
git tag -f v2.062-b1 upstream/staging~0

# Push tag to remote
git push upstream v2.062-b1
---
You should do above commands at each your dmd/druntime/phobos directories.

Kenji Hara