diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bee71dbf..422b89337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.41.0](https://github.com/rust-bio/rust-htslib/compare/rust-htslib-v0.40.2...rust-htslib-v0.41.0) (2023-03-02) + + +### Features + +* Revised calculation of leading- and trailing-softclips ([#375](https://github.com/rust-bio/rust-htslib/issues/375)) ([b61dd2c](https://github.com/rust-bio/rust-htslib/commit/b61dd2cfb2b74c0180f2d76bbd4ed4eb14fa09b3)) + ## [0.40.2](https://github.com/rust-bio/rust-htslib/compare/rust-htslib-v0.40.1...rust-htslib-v0.40.2) (2022-10-13) diff --git a/Cargo.toml b/Cargo.toml index c18d14f8a..9ecc24fcb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-htslib" -version = "0.40.2" +version = "0.41.0" authors = ["Christopher Schröder ", "Johannes Köster "] description = "This library provides HTSlib bindings and a high level Rust API for reading and writing BAM files." readme = "README.md" @@ -31,7 +31,7 @@ serde = { version = "^1", optional = true, features=["derive"] } serde_bytes = { version = "0.11", optional = true } bio-types = ">=0.9" thiserror = "1" -hts-sys = { version = "2.0.3", path = "hts-sys", default-features = false } +hts-sys = { version = "0.41.0", path = "hts-sys", default-features = false } derive-new = "0.5" ieee754 = "0.2" byteorder = "1.3" diff --git a/hts-sys/Cargo.toml b/hts-sys/Cargo.toml index 73361e54f..525738686 100644 --- a/hts-sys/Cargo.toml +++ b/hts-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hts-sys" -version = "2.0.3" +version = "0.41.0" authors = ["Christopher Schröder ", "Johannes Köster "] build = "build.rs" links = "hts"