diff --git a/CHANGELOG.md b/CHANGELOG.md index 38bb6ec..91aaa4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.4] + +### Fixed + +- mismatch in `--version` output + + +[2.0.4]: https://github.com/rpetit3/fastq-dl/compare/v2.0.3...v2.0.4 + ## [2.0.3] ### Added diff --git a/fastq_dl/fastq_dl.py b/fastq_dl/fastq_dl.py index 1490674..13995e5 100755 --- a/fastq_dl/fastq_dl.py +++ b/fastq_dl/fastq_dl.py @@ -43,7 +43,7 @@ } PROGRAM = "fastq-dl" -VERSION = "2.0.2" +VERSION = "2.0.4" ENA_FAILED = "ENA_NOT_FOUND" SRA_FAILED = "SRA_NOT_FOUND" SRA = "SRA" diff --git a/pyproject.toml b/pyproject.toml index bdd8008..15e88dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fastq-dl" -version = "2.0.3" +version = "2.0.4" description = "Download FASTQ files from SRA or ENA repositories." authors = [ "Robert A. Petit III ",