From e04345c136e710ce24835fb82cba7d1004eb606c Mon Sep 17 00:00:00 2001 From: Tomas Date: Sat, 6 Jun 2020 20:13:32 +0200 Subject: [PATCH] feat(version): bump minor to 1 --- .travis.yml | 6 +++++- version.go | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0e357fe..f9e3bfa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,7 @@ env: # - LIBVIPS=8.8.4 - LIBVIPS=8.9.2 # - LIBVIPS=master + - PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOME/libvips/lib/pkgconfig matrix: allow_failures: @@ -76,6 +77,7 @@ script: curl -fsSLO https://github.com/libvips/libvips/releases/download/v${LIBVIPS}/vips-${LIBVIPS}.tar.gz && \ tar zvxf vips-${LIBVIPS}.tar.gz && \ cd /tmp/vips-${LIBVIPS} && \ + test -f autogen.sh && ./autogen.sh || ./bootstrap.sh && \ CFLAGS="-g -O3" CXXFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0 -g -O3" \ ./configure \ --disable-debug \ @@ -85,7 +87,9 @@ script: --enable-gtk-doc-html=no \ --enable-gtk-doc=no \ --enable-pyvips8=no \ - --prefix=$HOME/libvips && \ + --without-orc \ + --without-python \ + --prefix=$HOME/libvips $1 && \ make && \ make install && \ ldconfig diff --git a/version.go b/version.go index e6e84d4..5bd5164 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package bimg // Version represents the current package semantic version. -const Version = "1.0.20" +const Version = "1.1.0"