From 66c333656c773e740f1681df4c0adbd29310cfb6 Mon Sep 17 00:00:00 2001 From: Urban Ishimwe Date: Wed, 16 Sep 2020 17:34:27 +0200 Subject: [PATCH] added current version and updated travis (#816) made version to be `1.2.0` and modified travis-ci to make test results more predictable --- .travis.yml | 5 ++++- version.go | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c20ae88..b892143 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,9 @@ +dist: focal + language: go go: 1.14 -script: sudo -E bash -c "source /etc/profile && eval '$(gimme 1.14)' && export GOPATH=$HOME/gopath:$GOPATH && go test ./... -v -timeout 120s" + +script: sudo -E bash -c "source /etc/profile && eval '$(gimme 1.14)' && go test ./... -v -timeout 120s" before_install: - sudo apt-get install libpcap-dev -y diff --git a/version.go b/version.go index e64fc4a..349ef17 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package main // VERSION the current version of goreplay -const VERSION = "1.1.0" +const VERSION = "1.2.0"