diff --git a/CHANGELOG.md b/CHANGELOG.md index 006288f..dd05449 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ## [Releases](https://github.com/tkchafin/mrbait/releases) +[v1.2.2](https://github.com/tkchafin/mrbait/releases/tag/v1.2.0) +- Bug fix introduced in 1.2.1 to the blast_i filter +- Bug fix causing crash when blast filter returned zero hits + [v1.2.1](https://github.com/tkchafin/mrbait/releases/tag/v1.2.0) - New functionality: Added new BLAST option 'blast_a' to remove ambiguous hits (>1 match) - Added hidden options to add secondary BLAST database diff --git a/README.md b/README.md index 4132a0d..0c066cd 100644 --- a/README.md +++ b/README.md @@ -48,4 +48,4 @@ source deactivate [CHANGELOG]: ./CHANGELOG.md [LICENSE]: ./LICENSE -[version-badge]: https://img.shields.io/badge/version-1.2.1-blue.svg +[version-badge]: https://img.shields.io/badge/version-1.2.2-blue.svg diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 4769d9b..ea62565 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,10 +1,10 @@ package: name: mrbait - version: "1.2.1" + version: "1.2.2" source: git_url: https://github.com/tkchafin/mrbait.git - git_rev: v1.2.1 + git_rev: v1.2.2 build: skip: True # [win] diff --git a/setup.py b/setup.py index fcf3c26..ef3cb2a 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def requires(): setup( name="mrbait", install_requires=requires(), - version="1.2.1", + version="1.2.2", description="Universal design of target-enrichment capture probes from genomic data", author='Tyler K. Chafin', author_email='tkchafin@uark.edu',