diff --git a/CHANGELOG.md b/CHANGELOG.md index 72f4ce2..ab5a77f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.0](https://github.com/mbhall88/rasusa/compare/1.0.0...2.0.0) (2024-05-03) + + +### ⚠ BREAKING CHANGES + +* paired reads require --output once for each file + +### Bug Fixes + +* paired reads require --output once for each file ([1427a0b](https://github.com/mbhall88/rasusa/commit/1427a0bd85c1a1b731d23c4b830bbcf7eb49e125)) + ## [1.0.0](https://github.com/mbhall88/rasusa/compare/0.8.0...1.0.0) (2024-04-29) diff --git a/Cargo.lock b/Cargo.lock index 53185a6..338d174 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -669,7 +669,7 @@ dependencies = [ [[package]] name = "rasusa" -version = "1.0.0" +version = "2.0.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 02ff7a9..cfdbc5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rasusa" description = "Randomly subsample reads or alignments" -version = "1.0.0" +version = "2.0.0" authors = ["Michael Hall "] edition = "2018" repository = "https://github.com/mbhall88/rasusa"