From e9eaef7cba36d7a18537ed64d4656f33a7fea018 Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Mon, 2 Dec 2024 09:54:47 +0100 Subject: [PATCH 1/4] feat: add hfile.h to wrapper.h so hopen appears in bindings (#17) --- wrapper.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wrapper.h b/wrapper.h index 1800aa4..bf96c74 100644 --- a/wrapper.h +++ b/wrapper.h @@ -1,6 +1,7 @@ #include "htslib/htslib/hts.h" #include "htslib/htslib/vcf.h" #include "htslib/htslib/sam.h" +#include "htslib/htslib/hfile.h" #include "htslib/htslib/cram.h" #include "htslib/htslib/bgzf.h" #include "htslib/htslib/vcfutils.h" From 90cee9372cae6f34db4a5ca30427e7235cef6a54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20K=C3=B6ster?= Date: Mon, 2 Dec 2024 10:04:06 +0100 Subject: [PATCH 2/4] build(deps): bump curl (#19) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a46c86e..318d56c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ tag-message = "Version {{version}} of Rust-HTSlib." libz-sys = { version = "1.1.0", default-features = false, features = ["zlib-ng", "static"] } bzip2-sys = { version = "0.1.8", optional = true } lzma-sys = { version = "0.1.16", optional = true, features = ["static"] } -curl-sys = { version = "0.4.44", optional = true, features = ["static-curl", "static-ssl", "protocol-ftp"] } +curl-sys = { version = "0.4.78", optional = true, features = ["static-curl", "static-ssl", "protocol-ftp"] } libdeflate-sys = { version = "0.7.3", optional = true } [target.'cfg(all(unix, not(target_os = "macos")))'.dependencies] From a1acbb1b3c6411975c4e9004e9b21140c7c3e81b Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Mon, 2 Dec 2024 14:31:09 -0500 Subject: [PATCH 3/4] chore(deps): update libdeflate-sys to 1.21.0 (#16) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Johannes Köster --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 318d56c..604f324 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ libz-sys = { version = "1.1.0", default-features = false, features = ["zlib-ng", bzip2-sys = { version = "0.1.8", optional = true } lzma-sys = { version = "0.1.16", optional = true, features = ["static"] } curl-sys = { version = "0.4.78", optional = true, features = ["static-curl", "static-ssl", "protocol-ftp"] } -libdeflate-sys = { version = "0.7.3", optional = true } +libdeflate-sys = { version = "1.21.0", optional = true } [target.'cfg(all(unix, not(target_os = "macos")))'.dependencies] openssl-sys = { version = "0.9.56", optional = true } From 40496b72354b272e576d43221fc08d1d62438e67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 20:31:58 +0100 Subject: [PATCH 4/4] chore(main): release 2.2.0 (#18) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4169f72..74c9340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.2.0](https://github.com/rust-bio/hts-sys/compare/v2.1.4...v2.2.0) (2024-12-02) + + +### Features + +* add hfile.h to wrapper.h so hopen appears in bindings ([#17](https://github.com/rust-bio/hts-sys/issues/17)) ([e9eaef7](https://github.com/rust-bio/hts-sys/commit/e9eaef7cba36d7a18537ed64d4656f33a7fea018)) + ## [2.1.4](https://github.com/rust-bio/hts-sys/compare/v2.1.3...v2.1.4) (2024-05-10) diff --git a/Cargo.toml b/Cargo.toml index 604f324..f61514b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hts-sys" -version = "2.1.4" +version = "2.2.0" authors = ["Christopher Schröder ", "Johannes Köster "] build = "build.rs" links = "hts"