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

gb version 0.3.2

Compare
Choose a tag to compare
@davecheney davecheney released this 26 Nov 11:22
· 253 commits to master since this release

The 0.3 series focuses on gb test

Changes

  • gb's logging has been simplified.

    -q mode has been removed, if you want gb to be silent, pipe stdout to /dev/null.

    -v mode has been removed, to enabled debug output, set the DEBUG environment variable. This variable takes a regex, but that isn't implement yet, so . will do.

    env DEBUG=. gb {build,test}

  • For linux builds, gb now uses travis-ci, which gives us coverage for Go 1.4, Go 1.5 and Go tip. Big thanks to @tianon for making this happen.

  • gb now works harder to cleanup temporary files when interrupted by a signal or ^C. Fixes #436.

Bug fixes

  • gb-vendor now shows the available commands if none are given. Thanks @kalafut. Fixes #446
  • gb now always outputs the package name of a failing package before the package. Fixes #440