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 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" ) 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" // ////////////////////////////////////////////////////////////////////////////////// //