Commit 065ca2f 1 parent afc8aeb commit 065ca2f Copy full SHA for 065ca2f
File tree 4 files changed +45
-4
lines changed
4 files changed +45
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
22
Version 1.14.10 (26th September 2018)
2
23
---------------
3
24
Original file line number Diff line number Diff line change 1
- Io_lib: Version 1.14.10
1
+ Io_lib: Version 1.14.11
2
2
========================
3
3
4
4
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
33
33
full details.
34
34
35
35
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
+
36
56
Version 1.14.10 (26th September 2018)
37
57
---------------
38
58
Original file line number Diff line number Diff line change 1
1
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 )
3
3
AC_CONFIG_HEADERS([io_lib_config.h])
4
4
AC_CONFIG_MACRO_DIR([m4])
5
5
AM_INIT_AUTOMAKE
@@ -55,7 +55,7 @@ AM_MAINTAINER_MODE
55
55
# libstaden-read.so.1.1.0
56
56
57
57
VERS_CURRENT=13
58
- VERS_REVISION=0
58
+ VERS_REVISION=1
59
59
VERS_AGE=0
60
60
AC_SUBST(VERS_CURRENT)
61
61
AC_SUBST(VERS_REVISION)
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ static char *detect_format(char *fn) {
92
92
93
93
static void usage (FILE * fp ) {
94
94
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" );
96
96
97
97
fprintf (fp , "Usage: scramble [options] [input_file [output_file]]\n" );
98
98
You can’t perform that action at this time.
0 commit comments