Skip to content

Commit

Permalink
Io_lib release 1.14.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbonfield committed Oct 16, 2018
1 parent afc8aeb commit 065ca2f
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
---------------

Expand Down
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)
---------------

Expand Down
4 changes: 2 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion progs/scramble.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit 065ca2f

Please sign in to comment.