Skip to content

Commit

Permalink
chore: release v0.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and cauliyang committed Jan 22, 2025
1 parent 63da5b9 commit b1ea9ad
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["crates/*", "py-deepbiop"]
default-members = ["crates/*"]

[workspace.package]
version = "0.1.14"
version = "0.1.15"
edition = "2021"
authors = ["Yangyang Li <sunlifeliz5@gmail.com>"]
homepage = "https://github.com/cauliyang/DeepBioP"
Expand Down Expand Up @@ -61,10 +61,10 @@ flate2 = { version = "1.0.35", features = [
"zlib-ng",
], default-features = false }

deepbiop-fq = { version = "0.1.14", path = "crates/deepbiop-fq" }
deepbiop-fq = { version = "0.1.15", path = "crates/deepbiop-fq" }
deepbiop-bam = { version = "0.1.11", path = "crates/deepbiop-bam" }
deepbiop-utils = { version = "0.1.14", path = "crates/deepbiop-utils" }
deepbiop-fa = { version = "0.1.14", path = "crates/deepbiop-fa" }
deepbiop-fa = { version = "0.1.15", path = "crates/deepbiop-fa" }
deepbiop-core = { version = "0.1.14", path = "crates/deepbiop-core" }

[profile.opt-dev]
Expand Down
11 changes: 11 additions & 0 deletions crates/deepbiop-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.15](https://github.com/cauliyang/DeepBioP/compare/deepbiop-cli-v0.1.14...deepbiop-cli-v0.1.15) - 2025-01-22

### Added

- Add markdown help option and documentation for deepbiop-cli
- Update output file extensions for FasToOne and FqsToOne commands to .fa.gz and .fq.gz respectively
- Add output option for specifying file paths in ExtractFa and ExtractFq commands
- Update ExtractFa to support optional read selection by path or random count
- Enhance ExtractFq command to support random selection of reads and update Cargo.toml dependencies
- Add fas2one and fqs2one commands for batch file conversion

## [0.1.14](https://github.com/cauliyang/DeepBioP/compare/deepbiop-cli-v0.1.13...deepbiop-cli-v0.1.14) - 2025-01-17

### Added
Expand Down
14 changes: 14 additions & 0 deletions crates/deepbiop-fa/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.15](https://github.com/cauliyang/DeepBioP/compare/deepbiop-fa-v0.1.14...deepbiop-fa-v0.1.15) - 2025-01-22

### Added

- Add random selection functionality for FASTQ records and expose it to Python
- Add functions to combine multiple FASTA and FASTQ files into bgzip-compressed formats
- Add fas2one and fqs2one commands for batch file conversion

### Other

- ♻️ Optimize record selection in select_record_from_fq_by_random function using for loop
- ♻️ Refactor select_record_from_fq_by_random function to use reservoir sampling algorithm
- Update fetch_records method to use fastq reader and improve record handling

## [0.1.14](https://github.com/cauliyang/DeepBioP/compare/deepbiop-fa-v0.1.13...deepbiop-fa-v0.1.14) - 2025-01-17

### Added
Expand Down
15 changes: 15 additions & 0 deletions crates/deepbiop-fq/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ 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).

## [0.1.15](https://github.com/cauliyang/DeepBioP/compare/deepbiop-fq-v0.1.14...deepbiop-fq-v0.1.15) - 2025-01-22

### Added

- Add random selection functionality for FASTQ records and expose it to Python
- Enhance ExtractFq command to support random selection of reads and update Cargo.toml dependencies
- Add functions to combine multiple FASTA and FASTQ files into bgzip-compressed formats
- Add fas2one and fqs2one commands for batch file conversion

### Other

- ♻️ Optimize record selection in select_record_from_fq_by_random function using for loop
- ♻️ Refactor select_record_from_fq_by_random function to use reservoir sampling algorithm
- Update fetch_records method to use fastq reader and improve record handling

## [0.1.14](https://github.com/cauliyang/DeepBioP/compare/deepbiop-fq-v0.1.13...deepbiop-fq-v0.1.14) - 2025-01-17

### Added
Expand Down

0 comments on commit b1ea9ad

Please sign in to comment.