From 2e5ad6edbe2d60c5ae5a34ba6377ce21ea67ba84 Mon Sep 17 00:00:00 2001 From: Tomas Date: Fri, 7 Feb 2020 19:22:44 +0100 Subject: [PATCH] feat(version): bump patch --- .travis.yml | 11 ++++++----- README.md | 2 +- version.go | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index af2d4c4..090d342 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,10 @@ dist: trusty sudo: false go: - - "1.8" - - "1.9" - "1.10" - "1.11" + - "1.12" + - "1.13" - "tip" env: @@ -17,7 +17,8 @@ env: - LIBVIPS=8.4.6 - LIBVIPS=8.5.8 - LIBVIPS=8.6.2 - - LIBVIPS=8.8.0 + - LIBVIPS=8.8.4 + - LIBVIPS=8.9.1 - LIBVIPS=master matrix: @@ -56,11 +57,11 @@ before_install: || echo ":-)" - > test "$LIBVIPS" != "master" -a "$LIBVIPS" \> "8.4" \ - && wget https://github.com/jcupitt/libvips/archive/v${LIBVIPS}.tar.gz -O vips.tgz \ + && wget https://github.com/libvips/libvips/archive/v${LIBVIPS}.tar.gz -O vips.tgz \ || echo ":-)" - > test $LIBVIPS == "master" \ - && wget https://github.com/jcupitt/libvips/archive/${LIBVIPS}.tar.gz -O vips.tgz \ + && wget https://github.com/libvips/libvips/archive/${LIBVIPS}.tar.gz -O vips.tgz \ || echo ":-)" - mkdir libvips - tar xf vips.tgz -C libvips --strip-components 1 diff --git a/README.md b/README.md index 55efe60..fc39da0 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ If you're using `gopkg.in`, you can still rely in the `v0` without worrying abou ## Prerequisites -- [libvips](https://github.com/jcupitt/libvips) 7.42+ or 8+ (8.4+ recommended) +- [libvips](https://github.com/libvips/libvips) 7.42+ or 8+ (8.4+ recommended) - C compatible compiler such as gcc 4.6+ or clang 3.0+ - Go 1.3+ diff --git a/version.go b/version.go index 69e7efb..e6e84d4 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package bimg // Version represents the current package semantic version. -const Version = "1.0.18" +const Version = "1.0.20"