Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release, minor features, bimg upgrade and several fixes #311

Merged
merged 17 commits into from
Jun 7, 2020
Merged
Prev Previous commit
Next Next commit
fix(ci): golinter
  • Loading branch information
h2non committed Jun 7, 2020
commit 2fb2acb7a9af18fe2c2a9b9323d4e2559bce82aa
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,18 @@ language: go
services:
- docker

dist: trusty
dist: focal

go:
- 1.14.x
- 1.13.x
- 1.14.x

env:
global:
- GOLANG_VERSION="${TRAVIS_GO_VERSION}"
- IMAGINARY_VERSION="${TRAVIS_TAG:-dev}"
matrix:
# - LIBVIPS=8.7.4
- LIBVIPS=8.8.0
- LIBVIPS=8.8.1
- LIBVIPS=8.8.4
- LIBVIPS=8.9.2

before_install:
Expand Down
2 changes: 1 addition & 1 deletion imaginary.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ type URLSignature struct {

func main() {
flag.Usage = func() {
_, _ = fmt.Fprint(os.Stderr, fmt.Sprintf(usage, Version, runtime.NumCPU()))
_, _ = fmt.Fprint(os.Stderr, usage, Version, runtime.NumCPU())
}
flag.Parse()

Expand Down