Skip to content

Releases: Masterminds/vcs

Release 1.9.0

18 Nov 14:16
v1.9.0
ccb44ce
Compare
Choose a tag to compare

Added

  • #50: Auto-detect remotes with file:// prefix.
  • #59: Testing against Go 1.7

Changed

  • Removed auto-detection for Google Code as the service is deprecated
  • Added auto-detection of git.openstack.org

Fixed

  • #53: Git not fetching tags off branch

Release 1.8.0

29 Jun 14:16
Compare
Choose a tag to compare

Added

  • #43: Detect when tool (e.g., git, svn, etc) not installed
  • #49: Detect access denied and not found situations

Changed

  • #48: Updated Go Report Gard url to new format
  • Refactored SVN handling to detect when not in a top level directory
  • Updating tagging to v[SemVer] structure for compatibility with other tools.

Fixed

  • #45: Fixed hg's update method so that it pulls from remote before updates

Release 1.7.0

05 May 13:38
Compare
Choose a tag to compare
  • Adds a glide.yaml file with some limited information.
  • Implements #37: Ability to export source as a directory.
  • Implements #36: Get current version-ish with Current method. This returns
    a branch (if on tip) or equivalent tip, a tag if on a tag, or a revision if
    on an individual revision. Note, the tip of branch is VCS specific so usage
    may require detecting VCS type.

Release 1.6.1

27 Apr 15:42
Compare
Choose a tag to compare
  • Fixed #30: tags from commit should not have ^{} appended (seen in git)
  • Fixed #29: isDetachedHead fails with non-english locales (git)
  • Fixed #33: Access denied and not found http errors causing xml parsing errors

Release 1.6.0

18 Apr 13:46
Compare
Choose a tag to compare
  • Issue #26: Added Init method to initialize a repo at the local location
    (thanks tony).
  • Issue #19: Added method to retrieve tags for a commit.
  • Issue #24: Reworked errors returned from common methods. Now differing
    VCS implementations return the same errors. The original VCS specific error
    is available on the error. See the docs for more details.
  • Issue #25: Export the function RunFromDir which runs VCS commands from the
    root of the local directory. This is useful for those that want to build and
    extend on top of the vcs package (thanks tony).
  • Issue #22: Added Ping command to test if remote location is present and
    accessible.