Skip to content

Commit

Permalink
Merge version number bump and NEWS file from master
Browse files Browse the repository at this point in the history
  • Loading branch information
daviesrob committed Feb 21, 2023
2 parents 0ad23b0 + 6143086 commit 70df047
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ LIBHTS_SOVERSION = 3
# is not strictly necessary and should be removed the next time
# LIBHTS_SOVERSION is bumped (see #1144 and
# https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html#//apple_ref/doc/uid/TP40002013-SW23)
MACH_O_COMPATIBILITY_VERSION = 3.1.16
MACH_O_CURRENT_VERSION = 3.1.16
MACH_O_COMPATIBILITY_VERSION = 3.1.17
MACH_O_CURRENT_VERSION = 3.1.17

# $(NUMERIC_VERSION) is for items that must have a numeric X.Y.Z string
# even if this is a dirty or untagged Git working tree.
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Noteworthy changes in release a.b
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Noteworthy changes in release 1.17 (21st February 2023)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* A new API for iterating through a BAM record's aux field.
(PR#1354, addresses #1319. Thanks to John Marshall)

Expand Down
2 changes: 1 addition & 1 deletion bgzip.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH bgzip 1 "18 August 2022" "htslib-1.16" "Bioinformatics tools"
.TH bgzip 1 "21 February 2023" "htslib-1.17" "Bioinformatics tools"
.SH NAME
.PP
bgzip \- Block compression/decompression utility
Expand Down
2 changes: 1 addition & 1 deletion htsfile.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH htsfile 1 "18 August 2022" "htslib-1.16" "Bioinformatics tools"
.TH htsfile 1 "21 February 2023" "htslib-1.17" "Bioinformatics tools"
.SH NAME
htsfile \- identify high-throughput sequencing data files
.\"
Expand Down
2 changes: 1 addition & 1 deletion htslib-s3-plugin.7
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH htslib-s3-plugin 7 "18 August 2022" "htslib-1.16" "Bioinformatics tools"
.TH htslib-s3-plugin 7 "21 February 2023" "htslib-1.17" "Bioinformatics tools"
.SH NAME
s3 plugin \- htslib AWS S3 plugin
.\"
Expand Down
22 changes: 22 additions & 0 deletions htslib.map
Original file line number Diff line number Diff line change
Expand Up @@ -608,3 +608,25 @@ HTSLIB_1.16 {
cram_slice_hdr_get_num_blocks;
hts_filter_eval2;
} HTSLIB_1.15;

HTSLIB_1.17 {
bam_aux_first;
bam_aux_next;
bam_aux_remove;
bcf_strerror;
cram_block_get_method;
cram_cid2ds_free;
cram_cid2ds_query;
cram_codec_describe;
cram_codec_get_content_ids;
cram_container_get_num_bases;
cram_container_get_num_records;
cram_decode_compression_header;
cram_describe_encodings;
cram_expand_method;
cram_free_compression_header;
cram_update_cid2ds_map;
fai_adjust_region;
fai_line_length;
faidx_seq_len64;
} HTSLIB_1.16;
2 changes: 1 addition & 1 deletion htslib/hts.h
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ const char *hts_version(void);
// Immediately after release, bump ZZ to 90 to distinguish in-development
// Git repository builds from the release; you may wish to increment this
// further when significant features are merged.
#define HTS_VERSION 101690
#define HTS_VERSION 101790

/*! @abstract Introspection on the features enabled in htslib
*
Expand Down
2 changes: 1 addition & 1 deletion tabix.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH tabix 1 "18 August 2022" "htslib-1.16" "Bioinformatics tools"
.TH tabix 1 "21 February 2023" "htslib-1.17" "Bioinformatics tools"
.SH NAME
.PP
tabix \- Generic indexer for TAB-delimited genome position files
Expand Down
2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# DEALINGS IN THE SOFTWARE.

# Master version, for use in tarballs or non-git source copies
VERSION=1.16
VERSION=1.17

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

0 comments on commit 70df047

Please sign in to comment.