From aaa70a85ef9a908d3b101f23879189e84a15d23f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20K=C3=B6ster?= Date: Tue, 6 Jul 2021 21:15:27 +0200 Subject: [PATCH] fix!: dummy major version bump to move away from previous versions that were following htslib versions. This is necessary to become more flexible in applying patches while keeping a semantic versioning scheme. --- hts-sys/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hts-sys/src/lib.rs b/hts-sys/src/lib.rs index 1f3766a58..b726e8798 100644 --- a/hts-sys/src/lib.rs +++ b/hts-sys/src/lib.rs @@ -5,7 +5,7 @@ #![allow(improper_ctypes)] //! This module exposes the raw [HTSlib](https://github.com/samtools/htslib) bindings. //! Instead of using this crate directly, it is recommended to use [rust-htslib](https://docs.rs/rust-htslib) instead, -//! which has a more idiomatic and high-level API and builds on top of hts-sys. +//! which has a more idiomatic and high-level API and builds on top of this crate. #[cfg(feature = "bzip2")] extern crate bzip2_sys;