Skip to content

Commit 21ef863

Browse files
committed
upgrade to go1.11
1 parent 392f251 commit 21ef863

File tree

207 files changed

+26
-45610
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+26
-45610
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ services:
33
- docker
44
language: go
55
go:
6-
- "1.10"
6+
- "1.11"
7+
env:
8+
- GO111MODULE=on
79
script:
810
- go test -v
911
addons:

go.mod

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
module github.com/codeskyblue/gohttpserver
2+
3+
require (
4+
github.com/alecthomas/kingpin v2.2.6+incompatible
5+
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc
6+
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf
7+
github.com/codeskyblue/dockerignore v0.0.0-20151214070507-de82dee623d9
8+
github.com/codeskyblue/go-accesslog v0.0.0-20171215023101-6188d3bd9371
9+
github.com/codeskyblue/openid-go v0.0.0-20160923065855-0d30842b2fb4
10+
github.com/fork2fix/go-plist v0.0.0-20181126021357-36960be5e636
11+
github.com/go-yaml/yaml v2.1.0+incompatible
12+
github.com/goji/httpauth v0.0.0-20160601135302-2da839ab0f4d
13+
github.com/gorilla/handlers v1.4.0
14+
github.com/gorilla/mux v1.6.2
15+
github.com/gorilla/sessions v1.1.3
16+
github.com/pkg/errors v0.8.0
17+
github.com/shogo82148/androidbinary v0.0.0-20180627093851-01c4bfa8b3b5
18+
github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371
19+
github.com/shurcooL/vfsgen v0.0.0-20181020040650-a97a25d856ca
20+
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a
21+
)

ipa.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import (
1010
"path/filepath"
1111
"regexp"
1212

13-
goplist "github.com/DHowett/go-plist"
13+
goplist "github.com/fork2fix/go-plist"
14+
//goplist "github.com/DHowett/go-plist"
1415
)
1516

1617
func parseIpaIcon(path string) (data []byte, err error) {

vendor/github.com/DHowett/go-plist/LICENSE

-58
This file was deleted.

vendor/github.com/DHowett/go-plist/README.md

-21
This file was deleted.

vendor/github.com/DHowett/go-plist/bplist.go

-26
This file was deleted.

0 commit comments

Comments
 (0)