Skip to content

Commit 065ca2f

Browse files
committed
Io_lib release 1.14.11
1 parent afc8aeb commit 065ca2f

File tree

4 files changed

+45
-4
lines changed

4 files changed

+45
-4
lines changed

CHANGES

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
Version 1.14.11 (16th October 2018)
2+
---------------
3+
4+
Updates:
5+
6+
* CRAM: http(s) queries now honour redirects.
7+
The User-Agent header is also set, which is necessary in some
8+
proxies.
9+
10+
Bug fixes:
11+
12+
* CRAM: fix to major range query bug introduced in 1.14.10.
13+
14+
* CRAM: more bug fixing on range queries when multi-threading (EOF
15+
detection).
16+
17+
* The test harness now works correctly in bourne shell, without
18+
using bashisms.
19+
20+
21+
122
Version 1.14.10 (26th September 2018)
223
---------------
324

README.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Io_lib: Version 1.14.10
1+
Io_lib: Version 1.14.11
22
========================
33

44
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
3333
full details.
3434

3535

36+
Version 1.14.11 (16th October 2018)
37+
---------------
38+
39+
Updates:
40+
41+
* CRAM: http(s) queries now honour redirects.
42+
The User-Agent header is also set, which is necessary in some
43+
proxies.
44+
45+
Bug fixes:
46+
47+
* CRAM: fix to major range query bug introduced in 1.14.10.
48+
49+
* CRAM: more bug fixing on range queries when multi-threading (EOF
50+
detection).
51+
52+
* The test harness now works correctly in bourne shell, without
53+
using bashisms.
54+
55+
3656
Version 1.14.10 (26th September 2018)
3757
---------------
3858

configure.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
AC_INIT(io_lib, 1.14.10)
2+
AC_INIT(io_lib, 1.14.11)
33
AC_CONFIG_HEADERS([io_lib_config.h])
44
AC_CONFIG_MACRO_DIR([m4])
55
AM_INIT_AUTOMAKE
@@ -55,7 +55,7 @@ AM_MAINTAINER_MODE
5555
# libstaden-read.so.1.1.0
5656

5757
VERS_CURRENT=13
58-
VERS_REVISION=0
58+
VERS_REVISION=1
5959
VERS_AGE=0
6060
AC_SUBST(VERS_CURRENT)
6161
AC_SUBST(VERS_REVISION)

progs/scramble.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static char *detect_format(char *fn) {
9292

9393
static void usage(FILE *fp) {
9494
fprintf(fp, " -=- sCRAMble -=- version %s\n", PACKAGE_VERSION);
95-
fprintf(fp, "Author: James Bonfield, Wellcome Trust Sanger Institute. 2013-2015\n\n");
95+
fprintf(fp, "Author: James Bonfield, Wellcome Trust Sanger Institute. 2013-2018\n\n");
9696

9797
fprintf(fp, "Usage: scramble [options] [input_file [output_file]]\n");
9898

0 commit comments

Comments
 (0)