From 3bae9e30ff31b9cead62e554c18a685f71c7f9a3 Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Mon, 27 Jun 2016 19:32:09 -0400 Subject: [PATCH 1/3] EK package updated to latest version --- librato.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/librato.go b/librato.go index 5af01f0..bdf6a1c 100644 --- a/librato.go +++ b/librato.go @@ -16,14 +16,14 @@ import ( "strings" "time" - "pkg.re/essentialkaos/ek.v1/req" - "pkg.re/essentialkaos/ek.v1/timeutil" + "pkg.re/essentialkaos/ek.v2/req" + "pkg.re/essentialkaos/ek.v2/timeutil" ) // ////////////////////////////////////////////////////////////////////////////////// // // VERSION contains current version of librato package and used as part of User-Agent -const VERSION = "2.0.0" +const VERSION = "2.0.1" // ////////////////////////////////////////////////////////////////////////////////// // From c41d27a5ea22ae1c9b22bf0ec0f54dbe9bba285c Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Mon, 27 Jun 2016 19:33:35 -0400 Subject: [PATCH 2/3] EK package updated to latest version --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0173fce..60f482b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ os: - linux before_install: - - go get pkg.re/essentialkaos/ek.v1 + - go get pkg.re/essentialkaos/ek.v2 script: - go build examples/annotations_example.go From 01b51a9220b6b21281be0b9b37a2772c681dd20d Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Mon, 27 Jun 2016 19:35:07 -0400 Subject: [PATCH 3/3] Updated examples to ek v2 --- examples/async_example.go | 2 +- examples/basic_example.go | 2 +- examples/collector_example.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/async_example.go b/examples/async_example.go index 38d22e5..f24fb89 100644 --- a/examples/async_example.go +++ b/examples/async_example.go @@ -6,7 +6,7 @@ import ( "fmt" "time" - "pkg.re/essentialkaos/ek.v1/rand" + "pkg.re/essentialkaos/ek.v2/rand" "github.com/essentialkaos/librato" ) diff --git a/examples/basic_example.go b/examples/basic_example.go index 7a5eefa..1c4a56e 100644 --- a/examples/basic_example.go +++ b/examples/basic_example.go @@ -6,7 +6,7 @@ import ( "fmt" "time" - "pkg.re/essentialkaos/ek.v1/rand" + "pkg.re/essentialkaos/ek.v2/rand" "github.com/essentialkaos/librato" ) diff --git a/examples/collector_example.go b/examples/collector_example.go index f8da514..a886806 100644 --- a/examples/collector_example.go +++ b/examples/collector_example.go @@ -6,7 +6,7 @@ import ( "fmt" "time" - "pkg.re/essentialkaos/ek.v1/rand" + "pkg.re/essentialkaos/ek.v2/rand" "github.com/essentialkaos/librato" )