Skip to content

Commit

Permalink
Minor updates (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
nrwiersma committed Nov 29, 2019
1 parent 3404785 commit b1a256a
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 21 deletions.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ sudo: false
language: go
go:
- "1.11.x"
- "1.12.x"
- "1.13.x"
- "1.x"

env:
- GO111MODULE=on
- GO111MODULE=on GOFLAGS=-mod=readonly GOPROXY=https://proxy.golang.org

cache:
directories:
- $GOPATH/pkg/mod

before_install:
- go mod download
Expand Down
35 changes: 17 additions & 18 deletions LICENCE
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
Copyright (c) 2019 Nicholas Wiersma

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
Copyright (c) 2019 Nicholas Wiersma

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1 change: 1 addition & 0 deletions doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package pkg
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module github.com/hamba/pkg

go 1.11

require (
github.com/go-kit/kit v0.9.0 // indirect
github.com/go-zoo/bone v1.3.0
Expand All @@ -8,8 +10,6 @@ require (
github.com/hamba/timex v1.0.0
github.com/json-iterator/go v1.1.7
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/prometheus/client_golang v1.1.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions httpx/httptest/server.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
Package httptest provides utilities for HTTP testing.
Deprecated: Use github.com/hamba/testutils instead.
Example Server Usage:
import (
Expand Down

0 comments on commit b1a256a

Please sign in to comment.