Skip to content

Commit 0db9819

Browse files
committed
Release 1.14.15
This is a series of small bug fixes
1 parent 99e2041 commit 0db9819

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed

CHANGES

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
Version 1.14.15 (6th December 2022)
2+
---------------
3+
4+
This is a bug fix release.
5+
6+
Updates:
7+
8+
* Switched to using GitHub actions for CI.
9+
10+
* Updated htscodecs submodule to the latest version (1.3.0).
11+
Also fixed function names used within it.
12+
13+
* Minor code tidyups to remove compiler warnings.
14+
15+
Bug fixes:
16+
17+
* MacOS testing fix to cope with sed failing on long lines.
18+
19+
* Fixed bam_aux_skip B array handling of signed values.
20+
21+
* Improved detection of unsorted mode, which was causing a drastic
22+
slow-down when encoding unsorted data.
23+
24+
* Fixed a CRAM reference multi-threading bug when fetching from a
25+
fasta file.
26+
27+
* Fixed bam_aux_f decoding of floats.
28+
29+
130
Version 1.14.14 (17th March 2021)
231
---------------
332

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Io_lib: Version 1.14.14
1+
Io_lib: Version 1.14.15
22
========================
33

44
Io_lib is a library of file reading and writing code to provide a general
@@ -33,6 +33,12 @@ See the CHANGES for a summary of older updates or git logs for the
3333
full details.
3434

3535

36+
Version 1.14.15 (6th December 2022)
37+
---------------
38+
39+
This is primarily a bug fix release.
40+
41+
3642
Version 1.14.14 (17th March 2021)
3743
---------------
3844

configure.ac

+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.14)
2+
AC_INIT(io_lib, 1.14.15)
33
IOLIB_VERSION=$PACKAGE_VERSION
44
IOLIB_VERSION_MAJOR=`expr "$PACKAGE_VERSION" : '\([[0-9]]*\)'`
55
IOLIB_VERSION_MINOR=`expr "$PACKAGE_VERSION" : '[[0-9]]*\.\([[0-9]]*\)'`
@@ -69,7 +69,7 @@ AX_SUBDIRS_CONFIGURE([htscodecs],[[--disable-shared],[--with-pic]])
6969
# libstaden-read.so.1.1.0
7070

7171
VERS_CURRENT=15
72-
VERS_REVISION=1
72+
VERS_REVISION=2
7373
VERS_AGE=1
7474
AC_SUBST(VERS_CURRENT)
7575
AC_SUBST(VERS_REVISION)

man/man1/scramble.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH scramble 1 "March 19 2013" "" "Staden io_lib"
1+
.TH scramble 1 "December 6 2022" "" "Staden io_lib"
22

33
.SH "NAME"
44

0 commit comments

Comments
 (0)