diff --git a/.travis.yml b/.travis.yml index 09ebf361..0c31d331 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,7 +67,7 @@ matrix: name: gansm/finalcut description: Build submitted via Travis CI notification_email: guru.mail@muenster.de - build_command_prepend: "cov-configure --template --comptype gcc --compiler gcc-7 && autoreconf -v --install --force && ./configure --prefix=/usr CPPFLAGS='-DDEBUG' CXXFLAGS='-g -O0 -DDEBUG -DUNIT_TEST' --with-unit-test && make clean" + build_command_prepend: "cov-configure --comptype gcc --compiler gcc-7 --template && autoreconf -v --install --force && ./configure --prefix=/usr CPPFLAGS='-DDEBUG' CXXFLAGS='-g -O0 -DDEBUG -DUNIT_TEST' --with-unit-test && make clean" build_command: "make V=1 -j10" branch_pattern: master before_install: @@ -75,9 +75,7 @@ matrix: - lsb_release -a - uname -a - whoami - # Work around broken certificate of scan.coverity.com - - sudo curl -s -L https://entrust.com/root-certificates/entrust_l1k.cer -o /usr/local/share/ca-certificates/entrust_l1k.crt - - sudo update-ca-certificates + - echo -n | openssl s_client -connect https://scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca- script: - autoreconf -v --install --force - ./configure --prefix=/usr CPPFLAGS="-DDEBUG" CXXFLAGS="-g -O0 -DDEBUG -DUNIT_TEST" --with-unit-test diff --git a/configure.ac b/configure.ac index d98e4dd9..b30d089d 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ # Process this file with autoconf to produce a configure script. -AC_INIT([finalcut], [0.6.0]) +AC_INIT([finalcut], [0.6.1]) AC_CONFIG_HEADER([config.h]) AX_PREFIX_CONFIG_H([src/include/final/fconfig.h], [F]) AC_CONFIG_SRCDIR([src/fobject.cpp]) @@ -61,7 +61,7 @@ LT_OUTPUT ### This defines the version number of the installed .so files ### Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B) ### using libtool's versioning system. -AC_SUBST(SO_VERSION, ["6:0:6"]) +AC_SUBST(SO_VERSION, ["6:1:6"]) AC_SUBST([LIBTOOL_DEPS]) diff --git a/src/Makefile.clang b/src/Makefile.clang index 50a67b46..339fcc35 100644 --- a/src/Makefile.clang +++ b/src/Makefile.clang @@ -3,7 +3,7 @@ #----------------------------------------------------------------------------- # This is where make install will install the library -VERSION = "0.6.0" +VERSION = "0.6.1" MAJOR := $(shell echo ${VERSION} | cut -d. -f1) LIBDIR = /usr/local/lib INCLUDEDIR1 = include/final diff --git a/src/Makefile.gcc b/src/Makefile.gcc index bc0a4391..b2332c7f 100644 --- a/src/Makefile.gcc +++ b/src/Makefile.gcc @@ -3,7 +3,7 @@ #----------------------------------------------------------------------------- # This is where make install will install the library -VERSION = "0.6.0" +VERSION = "0.6.1" MAJOR := $(shell echo ${VERSION} | cut -d. -f1) LIBDIR = /usr/local/lib INCLUDEDIR1 = include/final diff --git a/src/include/final/fconfig.h b/src/include/final/fconfig.h index 3a49d844..71879cdb 100644 --- a/src/include/final/fconfig.h +++ b/src/include/final/fconfig.h @@ -183,7 +183,7 @@ /* Define to the full name and version of this package. */ #ifndef F_PACKAGE_STRING -#define F_PACKAGE_STRING "finalcut 0.6.0" +#define F_PACKAGE_STRING "finalcut 0.6.1" #endif /* Define to the one symbol short name of this package. */ @@ -198,7 +198,7 @@ /* Define to the version of this package. */ #ifndef F_PACKAGE_VERSION -#define F_PACKAGE_VERSION "0.6.0" +#define F_PACKAGE_VERSION "0.6.1" #endif /* Define to 1 if you have the ANSI C header files. */ @@ -230,7 +230,7 @@ /* Version number of package */ #ifndef F_VERSION -#define F_VERSION "0.6.0" +#define F_VERSION "0.6.1" #endif /* Define to 1 if on MINIX. */