Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Commit 22e502c

Browse files
authored
Merge pull request #72 from povilasv/bump-ci
Change CI to build go 1.9 and later
2 parents 68e3a13 + db125f7 commit 22e502c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ language: go
66
# * github.com/prometheus/client_golang already requires at least go1.7 since
77
# September 2017
88
go:
9-
- 1.6.x
10-
- 1.7.x
11-
- 1.8.x
129
- 1.9.x
1310
- 1.10.x
11+
- 1.11.x
12+
- 1.12.x
1413
- master
1514

1615
install:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010

1111
### Added
1212

13+
* Require go 1.9 or later and test against these versions in CI.
1314
* Provide metrics object as `prometheus.Collector`, for conventional metric registration.
1415
* Support non-default/global Prometheus registry.
1516
* Allow configuring counters with `prometheus.CounterOpts`.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ common patterns: auth, logging and... monitoring.
2020

2121
To use Interceptors in chains, please see [`go-grpc-middleware`](https://github.com/mwitkow/go-grpc-middleware).
2222

23+
This library requires Go 1.9 or later.
24+
2325
## Usage
2426

2527
There are two types of interceptors: client-side and server-side. This package provides monitoring Interceptors for both.

0 commit comments

Comments
 (0)