Skip to content

Commit 4dc620e

Browse files
committed
Merge version number bump and NEWS file from master
2 parents b66c6d2 + 0f8bedc commit 4dc620e

File tree

10 files changed

+22
-9
lines changed

10 files changed

+22
-9
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ LIBHTS_SOVERSION = 3
158158
# is not strictly necessary and should be removed the next time
159159
# LIBHTS_SOVERSION is bumped (see #1144 and
160160
# https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html#//apple_ref/doc/uid/TP40002013-SW23)
161-
MACH_O_COMPATIBILITY_VERSION = 3.1.20
162-
MACH_O_CURRENT_VERSION = 3.1.20
161+
MACH_O_COMPATIBILITY_VERSION = 3.1.21
162+
MACH_O_CURRENT_VERSION = 3.1.21
163163

164164
# Force version.h to be remade if $(PACKAGE_VERSION) has changed.
165165
version.h: $(if $(wildcard version.h),$(if $(findstring "$(PACKAGE_VERSION)",$(shell cat version.h)),,force))

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Noteworthy changes in release a.b
22
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33

4+
Noteworthy changes in release 1.21 (12th September 2024)
5+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6+
47
The primary user-visible changes in this release are updates to the
58
annot-tsv tool and some speed improvements. Full details of other
69
changes and bugs fixed are below.

annot-tsv.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'\" t
2-
.TH annot-tsv 1 "15 April 2024" "htslib-1.20" "Bioinformatics tools"
2+
.TH annot-tsv 1 "12 September 2024" "htslib-1.21" "Bioinformatics tools"
33
.\"
44
.\" Copyright (C) 2015, 2017-2018, 2023-2024 Genome Research Ltd.
55
.\"

bgzip.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH bgzip 1 "15 April 2024" "htslib-1.20" "Bioinformatics tools"
1+
.TH bgzip 1 "12 September 2024" "htslib-1.21" "Bioinformatics tools"
22
.SH NAME
33
.PP
44
bgzip \- Block compression/decompression utility

htsfile.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH htsfile 1 "15 April 2024" "htslib-1.20" "Bioinformatics tools"
1+
.TH htsfile 1 "12 September 2024" "htslib-1.21" "Bioinformatics tools"
22
.SH NAME
33
htsfile \- identify high-throughput sequencing data files
44
.\"

htslib-s3-plugin.7

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH htslib-s3-plugin 7 "15 April 2024" "htslib-1.20" "Bioinformatics tools"
1+
.TH htslib-s3-plugin 7 "12 September 2024" "htslib-1.21" "Bioinformatics tools"
22
.SH NAME
33
htslib-s3-plugin \- htslib AWS S3 plugin
44
.\"

htslib.map

+10
Original file line numberDiff line numberDiff line change
@@ -640,3 +640,13 @@ HTSLIB_1.18 {
640640
HTSLIB_1.20 {
641641
tbx_conf_gaf;
642642
} HTSLIB_1.18;
643+
644+
HTSLIB_1.21 {
645+
cram_container_get_coords;
646+
cram_container_num2offset;
647+
cram_container_offset2num;
648+
cram_filter_container;
649+
cram_index_extents;
650+
cram_num_containers;
651+
cram_num_containers_between;
652+
} HTSLIB_1.20;

htslib/hts.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ const char *hts_version(void);
489489
// Immediately after release, bump ZZ to 90 to distinguish in-development
490490
// Git repository builds from the release; you may wish to increment this
491491
// further when significant features are merged.
492-
#define HTS_VERSION 102090
492+
#define HTS_VERSION 102190
493493

494494
/*! @abstract Introspection on the features enabled in htslib
495495
*

tabix.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH tabix 1 "15 April 2024" "htslib-1.20" "Bioinformatics tools"
1+
.TH tabix 1 "12 September 2024" "htslib-1.21" "Bioinformatics tools"
22
.SH NAME
33
.PP
44
tabix \- Generic indexer for TAB-delimited genome position files

version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# DEALINGS IN THE SOFTWARE.
2525

2626
# Master version, for use in tarballs or non-git source copies
27-
VERSION=1.20
27+
VERSION=1.21
2828

2929
# If we have a git clone, then check against the current tag
3030
srcdir=${0%/version.sh}

0 commit comments

Comments
 (0)