Skip to content
This repository has been archived by the owner on Feb 26, 2019. It is now read-only.

Commit

Permalink
Bump version/docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Muller committed Feb 22, 2016
1 parent 0a24d37 commit 53bf4cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Unreleased
# v54 2016/02/22

* Update some docs around vendor/
* More precise recording of dependencies. Removed recursive copying of sub directories of a package (precise vendoring). This should allow using `./...` with the go tool for compilation of project using `vendor/`. See https://github.com/tools/godep/pull/415

# v53 2016/02/11

Expand Down
8 changes: 2 additions & 6 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ $ rm -rf Godeps
$ export GO15VENDOREXPERIMENT=1
# re-analyze deps and save to `vendor/`.
# Note: this is a good time to stop using `./...`. See below.
$ godep save <pkg spec>
# Add the changed to your VCS
Expand All @@ -196,11 +195,8 @@ $ git add -A . ; git commit -am "Godep workspace -> vendor/"

NOTE: There was a design decision wrt `vendor/` that makes using `./...`
consider all packages inside the vendor directory:
https://github.com/golang/go/issues/11659. As a workaround you can do:

```term
$ go <cmd> $(go list ./... | grep -v /vendor/)
```
https://github.com/golang/go/issues/11659. This should not affect projects
unless the project also vendors its dependency's tests (off by default).

## Releasing

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"
)

const version = 53
const version = 54

var cmdVersion = &Command{
Name: "version",
Expand Down

0 comments on commit 53bf4cf

Please sign in to comment.