diff --git a/CHANGES b/CHANGES index c56e2155..49fc1544 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Version 1.14.11 (16th October 2018) +--------------- + +Updates: + +* CRAM: http(s) queries now honour redirects. + The User-Agent header is also set, which is necessary in some + proxies. + +Bug fixes: + +* CRAM: fix to major range query bug introduced in 1.14.10. + +* CRAM: more bug fixing on range queries when multi-threading (EOF + detection). + +* The test harness now works correctly in bourne shell, without + using bashisms. + + + Version 1.14.10 (26th September 2018) --------------- diff --git a/README.md b/README.md index 67cb35ce..858dbf30 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Io_lib: Version 1.14.10 +Io_lib: Version 1.14.11 ======================== Io_lib is a library of file reading and writing code to provide a general @@ -33,6 +33,26 @@ See the CHANGES for a summary of older updates or git logs for the full details. +Version 1.14.11 (16th October 2018) +--------------- + +Updates: + +* CRAM: http(s) queries now honour redirects. + The User-Agent header is also set, which is necessary in some + proxies. + +Bug fixes: + +* CRAM: fix to major range query bug introduced in 1.14.10. + +* CRAM: more bug fixing on range queries when multi-threading (EOF + detection). + +* The test harness now works correctly in bourne shell, without + using bashisms. + + Version 1.14.10 (26th September 2018) --------------- diff --git a/configure.in b/configure.in index 32ae8928..a3b53653 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(io_lib, 1.14.10) +AC_INIT(io_lib, 1.14.11) AC_CONFIG_HEADERS([io_lib_config.h]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE @@ -55,7 +55,7 @@ AM_MAINTAINER_MODE # libstaden-read.so.1.1.0 VERS_CURRENT=13 -VERS_REVISION=0 +VERS_REVISION=1 VERS_AGE=0 AC_SUBST(VERS_CURRENT) AC_SUBST(VERS_REVISION) diff --git a/progs/scramble.c b/progs/scramble.c index cd33841d..eb50d0e7 100644 --- a/progs/scramble.c +++ b/progs/scramble.c @@ -92,7 +92,7 @@ static char *detect_format(char *fn) { static void usage(FILE *fp) { fprintf(fp, " -=- sCRAMble -=- version %s\n", PACKAGE_VERSION); - fprintf(fp, "Author: James Bonfield, Wellcome Trust Sanger Institute. 2013-2015\n\n"); + fprintf(fp, "Author: James Bonfield, Wellcome Trust Sanger Institute. 2013-2018\n\n"); fprintf(fp, "Usage: scramble [options] [input_file [output_file]]\n");