From 522f14649acc16e1e405416599c1031e14267a8f Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Tue, 21 Feb 2017 18:20:57 -0500 Subject: [PATCH] ek package updated to v6 --- .travis.yml | 2 +- changelog.md | 10 ++++++++++ examples/async_example.go | 2 +- examples/basic_example.go | 2 +- examples/collector_example.go | 2 +- librato.go | 10 +++++----- 6 files changed, 19 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9523a35..391aae5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ matrix: - go: tip before_install: - - go get pkg.re/essentialkaos/ek.v5 + - go get pkg.re/essentialkaos/ek.v6 - mkdir -p $GOPATH/src/pkg.re/essentialkaos - ln -sf $GOPATH/src/github.com/essentialkaos/librato $GOPATH/src/pkg.re/essentialkaos/librato.v4 diff --git a/changelog.md b/changelog.md index 0573bba..8b49467 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,15 @@ ## Changelog +#### v4.1.0 + +* `ek` package updated to v6 + +#### v4.0.0 + +* Custom [ek](https://github.com/essentialkaos/ek) `req.Engine` support + +--- + #### v3.0.0 * Each `Metrics` and `Collector` instance now have it's own `req.Engine` for sending requests diff --git a/examples/async_example.go b/examples/async_example.go index f71ac9d..284c3a7 100644 --- a/examples/async_example.go +++ b/examples/async_example.go @@ -6,7 +6,7 @@ import ( "fmt" "time" - "pkg.re/essentialkaos/ek.v5/rand" + "pkg.re/essentialkaos/ek.v6/rand" "pkg.re/essentialkaos/librato.v4" ) diff --git a/examples/basic_example.go b/examples/basic_example.go index 56e386e..8e01921 100644 --- a/examples/basic_example.go +++ b/examples/basic_example.go @@ -6,7 +6,7 @@ import ( "fmt" "time" - "pkg.re/essentialkaos/ek.v5/rand" + "pkg.re/essentialkaos/ek.v6/rand" "pkg.re/essentialkaos/librato.v4" ) diff --git a/examples/collector_example.go b/examples/collector_example.go index e03f279..c60285a 100644 --- a/examples/collector_example.go +++ b/examples/collector_example.go @@ -6,7 +6,7 @@ import ( "fmt" "time" - "pkg.re/essentialkaos/ek.v5/rand" + "pkg.re/essentialkaos/ek.v6/rand" "pkg.re/essentialkaos/librato.v4" ) diff --git a/librato.go b/librato.go index bf1e842..1c1bba0 100644 --- a/librato.go +++ b/librato.go @@ -3,8 +3,8 @@ package librato // ////////////////////////////////////////////////////////////////////////////////// // // // -// Copyright (c) 2009-2015 Essential Kaos // -// Essential Kaos Open Source License // +// Copyright (c) 2009-2017 ESSENTIAL KAOS // +// Essential Kaos Open Source License // // // // ////////////////////////////////////////////////////////////////////////////////// // @@ -15,14 +15,14 @@ import ( "strings" "time" - "pkg.re/essentialkaos/ek.v5/req" - "pkg.re/essentialkaos/ek.v5/timeutil" + "pkg.re/essentialkaos/ek.v6/req" + "pkg.re/essentialkaos/ek.v6/timeutil" ) // ////////////////////////////////////////////////////////////////////////////////// // // VERSION contains current version of librato package and used as part of User-Agent -const VERSION = "4.0.0" +const VERSION = "4.1.0" // ////////////////////////////////////////////////////////////////////////////////// //