Dependancy upgrades (#264)

* dependancy upgrades

* revert dep to 0.4.1

* revert file changes
This commit is contained in:
LPowlett
2019-01-10 14:55:22 +00:00
committed by GitHub
parent 525ff82fe7
commit be11b3cda1
3 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@
set -ex set -ex
curl https://glide.sh/get | sh curl https://glide.sh/get | sh
sudo curl -Lo /usr/local/bin/dep https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 sudo curl -Lo /usr/local/bin/dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64
sudo chmod +x /usr/local/bin/dep sudo chmod +x /usr/local/bin/dep
go get golang.org/x/lint/golint go get golang.org/x/lint/golint

View File

@@ -18,7 +18,7 @@
[[constraint]] [[constraint]]
name = "github.com/docker/go-connections" name = "github.com/docker/go-connections"
version = "0.3.0" version = "0.4.0"
[prune] [prune]
go-tests = true go-tests = true

View File

@@ -32,19 +32,19 @@ limitations under the License.
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>5.2.0</version> <version>5.3.2</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<version>5.2.0</version> <version>5.3.2</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.junit.platform</groupId> <groupId>org.junit.platform</groupId>
<artifactId>junit-platform-console-standalone</artifactId> <artifactId>junit-platform-console-standalone</artifactId>
<version>1.2.0</version> <version>1.3.2</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
</dependencies> </dependencies>