Skip to content
This repository has been archived by the owner on Mar 6, 2020. It is now read-only.

gb version 0.3.5

Compare
Choose a tag to compare
@davecheney davecheney released this 16 Dec 11:06
· 208 commits to master since this release

The 0.3 series focuses on gb test.

New feature

  • The race detector is now supported by gb build and gb test. Fixes #96

    This feature is experimental, please report issues.

    The race detector requires that your Go installation include a race enabled runtime and stdlib. All binary releases from the Go website have this support. If you built Go from source, you may need to compile race support separately.

    Please see this faq entry for more information.

  • gb vendor fetch now accepts packages at the root of a vanity domain. Thanks @nullstyle

Bug fixes

  • gb now avoids inspecting the parent of a gb project directory to see if it is a symlink. This fixes several issues where project detection would be fooled by symlinks. Fixes #422, #481.