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 #30 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 8.0.0
  • Loading branch information
andyone authored Dec 10, 2018
2 parents 3a26040 + 9a9b963 commit f3f3677
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 17 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ sudo: false
language: go

go:
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- tip

branches:
Expand All @@ -24,7 +23,7 @@ matrix:
before_install:
- make deps
- mkdir -p $GOPATH/src/pkg.re/essentialkaos
- ln -sf $GOPATH/src/github.com/essentialkaos/librato $GOPATH/src/pkg.re/essentialkaos/librato.v7
- ln -sf $GOPATH/src/github.com/essentialkaos/librato $GOPATH/src/pkg.re/essentialkaos/librato.v8

script:
- go build examples/annotations_example.go
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Changelog

### 8.0.0

* `ek` package updated to v10

---

### 7.0.0

* `ek` package updated to v9
Expand Down
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
################################################################################

# This Makefile generated by GoMakeGen 0.8.0 using next command:
# This Makefile generated by GoMakeGen 0.8.1 using next command:
# gomakegen --metalinter .

################################################################################
Expand All @@ -12,8 +12,7 @@

deps: ## Download dependencies
git config --global http.https://pkg.re.followRedirects true
go get -d -v pkg.re/essentialkaos/ek.v9
go get -d -v pkg.re/essentialkaos/librato.v7
go get -d -v pkg.re/essentialkaos/ek.v10

fmt: ## Format source code with gofmt
find . -name "*.go" -exec gofmt -s -w {} \;
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<p align="center"><a href="#installation">Installation</a> • <a href="#examples">Examples</a> • <a href="#license">License</a></p>

<p align="center">
<a href="https://godoc.org/pkg.re/essentialkaos/librato.v7"><img src="https://godoc.org/pkg.re/essentialkaos/librato.v7?status.svg"></a>
<a href="https://godoc.org/pkg.re/essentialkaos/librato.v8"><img src="https://godoc.org/pkg.re/essentialkaos/librato.v8?status.svg"></a>
<a href="https://travis-ci.org/essentialkaos/librato"><img src="https://travis-ci.org/essentialkaos/librato.svg"></a>
<a href="https://goreportcard.com/report/github.com/essentialkaos/librato"><img src="https://goreportcard.com/badge/github.com/essentialkaos/librato"></a>
<a href="https://codebeat.co/projects/github-com-essentialkaos-librato"><img alt="codebeat badge" src="https://codebeat.co/badges/f82e704d-67a7-4c6f-9e5d-1acf058c937b" /></a>
Expand All @@ -20,16 +20,16 @@ Before the initial install allows git to use redirects for [pkg.re](https://gith
git config --global http.https://pkg.re.followRedirects true
```

Make sure you have a working Go 1.8+ workspace (_[instructions](https://golang.org/doc/install)_), then
Make sure you have a working Go 1.10+ workspace (_[instructions](https://golang.org/doc/install)_), then

```
go get pkg.re/essentialkaos/librato.v7
go get pkg.re/essentialkaos/librato.v8
```

For update to latest stable release, do:

```
go get -u pkg.re/essentialkaos/librato.v7
go get -u pkg.re/essentialkaos/librato.v8
```

### Examples
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.v7"
"pkg.re/essentialkaos/librato.v8"
)

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
2 changes: 1 addition & 1 deletion examples/async_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"math/rand"
"time"

"pkg.re/essentialkaos/librato.v7"
"pkg.re/essentialkaos/librato.v8"
)

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
2 changes: 1 addition & 1 deletion examples/basic_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"math/rand"
"time"

"pkg.re/essentialkaos/librato.v7"
"pkg.re/essentialkaos/librato.v8"
)

// ////////////////////////////////////////////////////////////////////////////////// //
Expand Down
2 changes: 1 addition & 1 deletion examples/collector_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"math/rand"
"time"

"pkg.re/essentialkaos/librato.v7"
"pkg.re/essentialkaos/librato.v8"
)

// ////////////////////////////////////////////////////////////////////////////////// //
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.v9/req"
"pkg.re/essentialkaos/ek.v9/timeutil"
"pkg.re/essentialkaos/ek.v10/req"
"pkg.re/essentialkaos/ek.v10/timeutil"
)

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

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

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

Expand Down

0 comments on commit f3f3677

Please sign in to comment.