From 265629fc7971e0b9ec72432732bf2008306b585a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Jun 2023 12:29:07 +0200 Subject: [PATCH] chore: release 1.0.0 (#46) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e856db..86e2921 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [1.0.0](https://www.github.com/rust-bio/rust-bio-types/compare/v0.13.0...v1.0.0) (2023-06-06) + + +### ⚠ BREAKING CHANGES + +* custom number of columns in Alignment::pretty() (#19) + +### Features + +* allow AlignmentMode to be used on the command line ([#44](https://www.github.com/rust-bio/rust-bio-types/issues/44)) ([40846fb](https://www.github.com/rust-bio/rust-bio-types/commit/40846fb38f5abe471bdebdd40193ed2b5e545826)) +* custom number of columns in Alignment::pretty() ([#19](https://www.github.com/rust-bio/rust-bio-types/issues/19)) ([2528736](https://www.github.com/rust-bio/rust-bio-types/commit/252873617a6366520ee37dbd1f126f433e50c32e)) +* strand: Use +/- rather than (+)/(-) for str ([#39](https://www.github.com/rust-bio/rust-bio-types/issues/39)) ([45f518e](https://www.github.com/rust-bio/rust-bio-types/commit/45f518e97148f3cac27b53f4a6272267236c2912)) + + +### Bug Fixes + +* link to repository and docs ([#41](https://www.github.com/rust-bio/rust-bio-types/issues/41)) ([5e078d4](https://www.github.com/rust-bio/rust-bio-types/commit/5e078d4a097ad3daad82af60430e5d8e39e4850e)) + ## [0.13.0](https://www.github.com/rust-bio/rust-bio-types/compare/v0.12.1...v0.13.0) (2022-07-23) diff --git a/Cargo.lock b/Cargo.lock index fc57007..24c049c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" [[package]] name = "bio-types" -version = "0.13.0" +version = "1.0.0" dependencies = [ "clap", "derive-new", diff --git a/Cargo.toml b/Cargo.toml index 1e9f079..f3a7688 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bio-types" -version = "0.13.0" +version = "1.0.0" authors = ["Johannes Köster "] description = "A collection of common biomedical types for use in rust-bio and rust-htslib." homepage = "https://rust-bio.github.io"