Skip to content

Commit

Permalink
Merge pull request #137 from takecy/master
Browse files Browse the repository at this point in the history
Update packages
  • Loading branch information
takecy authored Dec 14, 2020
2 parents ff947a7 + 18f9718 commit 3385219
Show file tree
Hide file tree
Showing 5 changed files with 369 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go
go:
- 1.13.x
- 1.15.x
env:
global:
- GO111MODULE=on
Expand Down
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,19 @@ test:

.PHONEY: cover
cover:
go test -coverprofile=coverage.txt ./...
go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...

.PHONEY: generate
generate:
rm -rf ./appstore/mocks/*
rm -rf ./playstore/mocks/*
go generate ./...

.PHONEY: update tidy update_all
update: update_all tidy

tidy:
GO111MODULE=on GOPRIVATE="github.com/awa/*" go mod tidy

update_all:
GO111MODULE=on GOPRIVATE="github.com/awa/*" go get -v all
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
go-iap
======

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

Expand Down
19 changes: 8 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
module github.com/awa/go-iap

go 1.12
go 1.15

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

0 comments on commit 3385219

Please sign in to comment.