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

Commit

Permalink
Merge pull request #24 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 6.0.0
  • Loading branch information
andyone authored Apr 16, 2017
2 parents 15f8c94 + 711ccf6 commit bba03ad
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ matrix:
- go: tip

before_install:
- go get pkg.re/essentialkaos/ek.v7
- make deps
- mkdir -p $GOPATH/src/pkg.re/essentialkaos
- ln -sf $GOPATH/src/github.com/essentialkaos/librato $GOPATH/src/pkg.re/essentialkaos/librato.v5
- ln -sf $GOPATH/src/github.com/essentialkaos/librato $GOPATH/src/pkg.re/essentialkaos/librato.v6

script:
- go build examples/annotations_example.go
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
########################################################################################

# This Makefile generated by GoMakeGen 0.4.0 using next command:
# This Makefile generated by GoMakeGen 0.5.0 using next command:
# gomakegen --metalinter .

########################################################################################

.PHONY = fmt deps
.PHONY = fmt deps metalinter

########################################################################################

deps:
git config --global http.https://pkg.re.followRedirects true
go get -v pkg.re/essentialkaos/ek.v7
go get -d -v pkg.re/essentialkaos/ek.v8

fmt:
find . -name "*.go" -exec gofmt -s -w {} \;
Expand Down
2 changes: 1 addition & 1 deletion examples/annotations_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"time"

"pkg.re/essentialkaos/librato.v5"
"pkg.re/essentialkaos/librato.v6"
)

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
4 changes: 2 additions & 2 deletions examples/async_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"fmt"
"time"

"pkg.re/essentialkaos/ek.v7/rand"
"pkg.re/essentialkaos/ek.v8/rand"

"pkg.re/essentialkaos/librato.v5"
"pkg.re/essentialkaos/librato.v6"
)

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
4 changes: 2 additions & 2 deletions examples/basic_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"fmt"
"time"

"pkg.re/essentialkaos/ek.v7/rand"
"pkg.re/essentialkaos/ek.v8/rand"

"pkg.re/essentialkaos/librato.v5"
"pkg.re/essentialkaos/librato.v6"
)

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
4 changes: 2 additions & 2 deletions examples/collector_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"fmt"
"time"

"pkg.re/essentialkaos/ek.v7/rand"
"pkg.re/essentialkaos/ek.v8/rand"

"pkg.re/essentialkaos/librato.v5"
"pkg.re/essentialkaos/librato.v6"
)

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
6 changes: 3 additions & 3 deletions librato.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import (
"strings"
"time"

"pkg.re/essentialkaos/ek.v7/req"
"pkg.re/essentialkaos/ek.v7/timeutil"
"pkg.re/essentialkaos/ek.v8/req"
"pkg.re/essentialkaos/ek.v8/timeutil"
)

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

// VERSION contains current version of librato package and used as part of User-Agent
const VERSION = "5.0.0"
const VERSION = "6.0.0"

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

Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Librato [![GoDoc](https://godoc.org/pkg.re/essentialkaos/librato.v5?status.svg)](https://godoc.org/pkg.re/essentialkaos/librato.v5) [![Build Status](https://travis-ci.org/essentialkaos/librato.svg?branch=master)](https://travis-ci.org/essentialkaos/librato) [![Go Report Card](https://goreportcard.com/badge/github.com/essentialkaos/librato)](https://goreportcard.com/report/github.com/essentialkaos/librato) [![codebeat badge](https://codebeat.co/badges/f82e704d-67a7-4c6f-9e5d-1acf058c937b)](https://codebeat.co/projects/github-com-essentialkaos-librato) [![License](https://gh.kaos.io/ekol.svg)](https://essentialkaos.com/ekol)
# Librato [![GoDoc](https://godoc.org/pkg.re/essentialkaos/librato.v6?status.svg)](https://godoc.org/pkg.re/essentialkaos/librato.v6) [![Build Status](https://travis-ci.org/essentialkaos/librato.svg?branch=master)](https://travis-ci.org/essentialkaos/librato) [![Go Report Card](https://goreportcard.com/badge/github.com/essentialkaos/librato)](https://goreportcard.com/report/github.com/essentialkaos/librato) [![codebeat badge](https://codebeat.co/badges/f82e704d-67a7-4c6f-9e5d-1acf058c937b)](https://codebeat.co/projects/github-com-essentialkaos-librato) [![License](https://gh.kaos.io/ekol.svg)](https://essentialkaos.com/ekol)

Package for working with [Librato Metrics](https://www.librato.com) API from Go code.

Expand All @@ -13,13 +13,13 @@ git config --global http.https://pkg.re.followRedirects true
Make sure you have a working Go 1.6+ workspace ([instructions](https://golang.org/doc/install)), then

```
go get pkg.re/essentialkaos/librato.v5
go get pkg.re/essentialkaos/librato.v6
```

For update to latest stable release, do:

```
go get -u pkg.re/essentialkaos/librato.v5
go get -u pkg.re/essentialkaos/librato.v6
```

## Examples
Expand Down

0 comments on commit bba03ad

Please sign in to comment.