Skip to content

Commit b3c294a

Browse files
author
Alexey Khokhlov
committed
update modules and etc
1 parent f24da77 commit b3c294a

File tree

7 files changed

+42
-542
lines changed

7 files changed

+42
-542
lines changed

.githooks/pre-commit.sh

-23
This file was deleted.

.github/workflows/go.yml

-20
This file was deleted.

.travis.yml

-7
This file was deleted.

Makefile

-5
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,12 @@ setup:
44
ln -s -f ../../.githooks/pre-commit.sh .git/hooks/pre-commit
55

66
test: lint
7-
GO111MODULE=on go test -race -cover -coverprofile=cover-v2.out -count=5
8-
cd ./v3/ && GO111MODULE=on go test -race -cover -coverprofile=cover-v3.out -count=5
97
cd ./v4/ && GO111MODULE=on go test -race -cover -coverprofile=cover-v4.out -count=5
108

119
lint:
1210
GO111MODULE=on gofmt -s -l .
1311
GO111MODULE=on goimports -l .
1412
GO111MODULE=on go vet .
15-
cd ./v3/ && GO111MODULE=on gofmt -s -l .
16-
cd ./v3/ && GO111MODULE=on goimports -l .
17-
cd ./v3/ && GO111MODULE=on go vet .
1813
cd ./v4/ && GO111MODULE=on gofmt -s -l .
1914
cd ./v4/ && GO111MODULE=on goimports -l .
2015
cd ./v4/ && GO111MODULE=on go vet .

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# promgrpc [![Build Status](https://travis-ci.org/piotrkowalczuk/promgrpc.svg?branch=master)](https://travis-ci.org/piotrkowalczuk/promgrpc)
1+
# promgrpc
22

33
[![GoDoc](https://godoc.org/github.com/piotrkowalczuk/promgrpc?status.svg)](https://pkg.go.dev/github.com/piotrkowalczuk/promgrpc/v4)
44

go.mod

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
module github.com/alexeyxo/promgrpc
22

3-
go 1.19
3+
go 1.20
44

55
require (
6-
github.com/prometheus/client_golang v1.13.0
7-
golang.org/x/net v0.0.0-20220920203100-d0c6ba3f52d9
8-
google.golang.org/grpc v1.49.0
6+
github.com/prometheus/client_golang v1.15.1
7+
golang.org/x/net v0.10.0
8+
google.golang.org/grpc v1.55.0
99
)
1010

1111
require (
1212
github.com/beorn7/perks v1.0.1 // indirect
13-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
14-
github.com/golang/protobuf v1.5.2 // indirect
15-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
16-
github.com/prometheus/client_model v0.2.0 // indirect
17-
github.com/prometheus/common v0.37.0 // indirect
18-
github.com/prometheus/procfs v0.8.0 // indirect
19-
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
20-
golang.org/x/text v0.3.7 // indirect
21-
google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect
22-
google.golang.org/protobuf v1.28.1 // indirect
13+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
14+
github.com/golang/protobuf v1.5.3 // indirect
15+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
16+
github.com/prometheus/client_model v0.3.0 // indirect
17+
github.com/prometheus/common v0.42.0 // indirect
18+
github.com/prometheus/procfs v0.9.0 // indirect
19+
golang.org/x/sys v0.8.0 // indirect
20+
golang.org/x/text v0.9.0 // indirect
21+
google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4 // indirect
22+
google.golang.org/protobuf v1.30.0 // indirect
2323
)

0 commit comments

Comments
 (0)