Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
ek package updated to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Feb 21, 2017
1 parent 4096e17 commit 522f146
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/async_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"time"

"pkg.re/essentialkaos/ek.v5/rand"
"pkg.re/essentialkaos/ek.v6/rand"

"pkg.re/essentialkaos/librato.v4"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/basic_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"time"

"pkg.re/essentialkaos/ek.v5/rand"
"pkg.re/essentialkaos/ek.v6/rand"

"pkg.re/essentialkaos/librato.v4"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/collector_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"time"

"pkg.re/essentialkaos/ek.v5/rand"
"pkg.re/essentialkaos/ek.v6/rand"

"pkg.re/essentialkaos/librato.v4"
)
Expand Down
10 changes: 5 additions & 5 deletions librato.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package librato

// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2009-2015 Essential Kaos //
// Essential Kaos Open Source License <http://essentialkaos.com/ekol?en> //
// Copyright (c) 2009-2017 ESSENTIAL KAOS //
// Essential Kaos Open Source License <https://essentialkaos.com/ekol> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //

Expand All @@ -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"

// ////////////////////////////////////////////////////////////////////////////////// //

Expand Down

0 comments on commit 522f146

Please sign in to comment.