Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 6d95d0d

Browse files
authored
Merge pull request #1559 from sdboyer/v040-release-prep
v0.4.0 release prep
2 parents 4a3baf8 + 916906b commit 6d95d0d

File tree

159 files changed

+17
-30893
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+17
-30893
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
# v0.4.0 (Unreleased)
1+
# (next version)
2+
3+
NEW FEATURES:
4+
5+
BUG FIXES:
6+
7+
IMPROVEMENTS:
8+
9+
# v0.4.0
210

311
NEW FEATURES:
412
* Add support for importing from [glock](https://github.com/robfig/glock) based projects. ([#1422](https://github.com/golang/dep/pull/1422)

cmd/dep/testdata/harness_tests/init/glide/case4/final/Gopkg.toml

+4
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
[[constraint]]
33
name = "github.com/sdboyer/deptestdos"
44
version = "2.0.0"
5+
6+
[prune]
7+
go-tests = true
8+
unused-packages = true

docs/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ title: Getting Started
66

77
Welcome! This is documentation for dep, the "official experiment" dependency management tool for the Go language. Dep is a tool intended primarily for use by developers, to support the work of actually writing and shipping code. It is _not_ intended for end users who are installing Go software - that's what `go get` does.
88

9-
This site has both guides and reference documents. The guides are practical explanations of how to actually do things with dep, whereas the reference material provides deeper dives on specific topics. Of particular note is the [glossary](#glossary.md) - if you're unfamiliar with terminology used in this documentation, make sure to check there!
9+
This site has both guides and reference documents. The guides are practical explanations of how to actually do things with dep, whereas the reference material provides deeper dives on specific topics. Of particular note is the [glossary](glossary.md) - if you're unfamiliar with terminology used in this documentation, make sure to check there!
1010

1111
After [installing dep](installation.md), if you're using it for the first time, check out [Creating a New Project](new-project.md). Or, if you have an existing Go project that you want to convert to dep, [Migrating to Dep](migrating.md) is probably the place to start.

hack/validate-vendor.bash

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@ unset IFS
3333
if [ ${#files[@]} -gt 0 ]; then
3434
go build ./cmd/dep
3535
./dep ensure -vendor-only
36-
./dep prune
3736
# Let see if the working directory is clean
3837
diffs="$(git status --porcelain -- vendor Gopkg.toml Gopkg.lock 2>/dev/null)"
3938
if [ "$diffs" ]; then
4039
{
41-
echo 'The contents of vendor differ after "dep ensure && dep prune":'
40+
echo 'The contents of vendor differ after "dep ensure":'
4241
echo
4342
echo "$diffs"
4443
echo

vendor/github.com/Masterminds/semver/.travis.yml

-24
This file was deleted.

vendor/github.com/Masterminds/semver/CHANGELOG.md

-17
This file was deleted.

vendor/github.com/Masterminds/semver/Makefile

-36
This file was deleted.

vendor/github.com/Masterminds/semver/README.md

-146
This file was deleted.

vendor/github.com/Masterminds/semver/appveyor.yml

-44
This file was deleted.

0 commit comments

Comments
 (0)