Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# v0.4.0 (Unreleased)
# (next version)

NEW FEATURES:

BUG FIXES:

IMPROVEMENTS:

# v0.4.0

NEW FEATURES:
* Add support for importing from [glock](https://github.com/robfig/glock) based projects. ([#1422](https://github.com/golang/dep/pull/1422)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
[[constraint]]
name = "github.com/sdboyer/deptestdos"
version = "2.0.0"

[prune]
go-tests = true
unused-packages = true
2 changes: 1 addition & 1 deletion docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ title: Getting Started

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.

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!
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!

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.
3 changes: 1 addition & 2 deletions hack/validate-vendor.bash
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ unset IFS
if [ ${#files[@]} -gt 0 ]; then
go build ./cmd/dep
./dep ensure -vendor-only
./dep prune
# Let see if the working directory is clean
diffs="$(git status --porcelain -- vendor Gopkg.toml Gopkg.lock 2>/dev/null)"
if [ "$diffs" ]; then
{
echo 'The contents of vendor differ after "dep ensure && dep prune":'
echo 'The contents of vendor differ after "dep ensure":'
echo
echo "$diffs"
echo
Expand Down
24 changes: 0 additions & 24 deletions vendor/github.com/Masterminds/semver/.travis.yml

This file was deleted.

17 changes: 0 additions & 17 deletions vendor/github.com/Masterminds/semver/CHANGELOG.md

This file was deleted.

36 changes: 0 additions & 36 deletions vendor/github.com/Masterminds/semver/Makefile

This file was deleted.

146 changes: 0 additions & 146 deletions vendor/github.com/Masterminds/semver/README.md

This file was deleted.

44 changes: 0 additions & 44 deletions vendor/github.com/Masterminds/semver/appveyor.yml

This file was deleted.

Loading