Skip to content

Commit 3385219

Browse files
authored
Merge pull request #137 from takecy/master
Update packages
2 parents ff947a7 + 18f9718 commit 3385219

File tree

5 files changed

+369
-29
lines changed

5 files changed

+369
-29
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: go
22
go:
3-
- 1.13.x
3+
- 1.15.x
44
env:
55
global:
66
- GO111MODULE=on

Makefile

+10-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,19 @@ test:
1313

1414
.PHONEY: cover
1515
cover:
16-
go test -coverprofile=coverage.txt ./...
16+
go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
1717

1818
.PHONEY: generate
1919
generate:
2020
rm -rf ./appstore/mocks/*
2121
rm -rf ./playstore/mocks/*
2222
go generate ./...
23+
24+
.PHONEY: update tidy update_all
25+
update: update_all tidy
26+
27+
tidy:
28+
GO111MODULE=on GOPRIVATE="github.com/awa/*" go mod tidy
29+
30+
update_all:
31+
GO111MODULE=on GOPRIVATE="github.com/awa/*" go get -v all

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
go-iap
22
======
33

4-
![](https://img.shields.io/badge/golang-1.13-blue.svg?style=flat)
4+
![](https://img.shields.io/badge/golang-1.15+-blue.svg?style=flat)
55
[![Build Status](https://travis-ci.org/awa/go-iap.svg?branch=master)](https://travis-ci.org/awa/go-iap)
66
[![codecov.io](https://codecov.io/github/awa/go-iap/coverage.svg?branch=master)](https://codecov.io/github/awa/go-iap?branch=master)
77

go.mod

+8-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
module github.com/awa/go-iap
22

3-
go 1.12
3+
go 1.15
44

55
require (
6-
cloud.google.com/go v0.39.0 // indirect
7-
github.com/golang/mock v1.4.0
8-
go.opencensus.io v0.22.0 // indirect
9-
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
10-
golang.org/x/oauth2 v0.0.0-20190523182746-aaccbc9213b0
11-
golang.org/x/sys v0.0.0-20190530182044-ad28b68e88f1 // indirect
12-
google.golang.org/api v0.5.1-0.20190526001144-9f3a303b451f
13-
google.golang.org/appengine v1.6.5
14-
google.golang.org/genproto v0.0.0-20190530194941-fb225487d101 // indirect
15-
google.golang.org/grpc v1.21.0 // indirect
6+
cloud.google.com/go v0.74.0 // indirect
7+
github.com/golang/mock v1.4.4
8+
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
9+
golang.org/x/sys v0.0.0-20201214095126-aec9a390925b // indirect
10+
google.golang.org/api v0.36.0
11+
google.golang.org/appengine v1.6.7
12+
google.golang.org/genproto v0.0.0-20201211151036-40ec1c210f7a // indirect
1613
)

0 commit comments

Comments
 (0)