Skip to content

Commit 70df047

Browse files
committed
Merge version number bump and NEWS file from master
2 parents 0ad23b0 + 6143086 commit 70df047

File tree

9 files changed

+33
-8
lines changed

9 files changed

+33
-8
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ LIBHTS_SOVERSION = 3
143143
# is not strictly necessary and should be removed the next time
144144
# LIBHTS_SOVERSION is bumped (see #1144 and
145145
# https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html#//apple_ref/doc/uid/TP40002013-SW23)
146-
MACH_O_COMPATIBILITY_VERSION = 3.1.16
147-
MACH_O_CURRENT_VERSION = 3.1.16
146+
MACH_O_COMPATIBILITY_VERSION = 3.1.17
147+
MACH_O_CURRENT_VERSION = 3.1.17
148148

149149
# $(NUMERIC_VERSION) is for items that must have a numeric X.Y.Z string
150150
# even if this is a dirty or untagged Git working tree.

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.17 (21st February 2023)
5+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6+
47
* A new API for iterating through a BAM record's aux field.
58
(PR#1354, addresses #1319. Thanks to John Marshall)
69

bgzip.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH bgzip 1 "18 August 2022" "htslib-1.16" "Bioinformatics tools"
1+
.TH bgzip 1 "21 February 2023" "htslib-1.17" "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 "18 August 2022" "htslib-1.16" "Bioinformatics tools"
1+
.TH htsfile 1 "21 February 2023" "htslib-1.17" "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 "18 August 2022" "htslib-1.16" "Bioinformatics tools"
1+
.TH htslib-s3-plugin 7 "21 February 2023" "htslib-1.17" "Bioinformatics tools"
22
.SH NAME
33
s3 plugin \- htslib AWS S3 plugin
44
.\"

htslib.map

+22
Original file line numberDiff line numberDiff line change
@@ -608,3 +608,25 @@ HTSLIB_1.16 {
608608
cram_slice_hdr_get_num_blocks;
609609
hts_filter_eval2;
610610
} HTSLIB_1.15;
611+
612+
HTSLIB_1.17 {
613+
bam_aux_first;
614+
bam_aux_next;
615+
bam_aux_remove;
616+
bcf_strerror;
617+
cram_block_get_method;
618+
cram_cid2ds_free;
619+
cram_cid2ds_query;
620+
cram_codec_describe;
621+
cram_codec_get_content_ids;
622+
cram_container_get_num_bases;
623+
cram_container_get_num_records;
624+
cram_decode_compression_header;
625+
cram_describe_encodings;
626+
cram_expand_method;
627+
cram_free_compression_header;
628+
cram_update_cid2ds_map;
629+
fai_adjust_region;
630+
fai_line_length;
631+
faidx_seq_len64;
632+
} HTSLIB_1.16;

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 101690
492+
#define HTS_VERSION 101790
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 "18 August 2022" "htslib-1.16" "Bioinformatics tools"
1+
.TH tabix 1 "21 February 2023" "htslib-1.17" "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.16
27+
VERSION=1.17
2828

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

0 commit comments

Comments
 (0)