Skip to content

Commit

Permalink
bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhall88 committed Aug 29, 2021
1 parent 8193504 commit 8d9ce5e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.6.0]

### Addedd
- `--bases` option to allow for manually setting the target number of bases to keep
[[#30][30]]
Expand Down Expand Up @@ -90,6 +92,7 @@ be 1070.
[0.4.1]: https://github.com/mbhall88/rasusa/releases/tag/0.4.1
[0.4.2]: https://github.com/mbhall88/rasusa/releases/tag/0.4.2
[0.5.0]: https://github.com/mbhall88/rasusa/releases/tag/0.5.0
[0.6.0]: https://github.com/mbhall88/rasusa/releases/tag/0.6.0
[19]: https://github.com/mbhall88/rasusa/issues/19
[22]: https://github.com/mbhall88/rasusa/issues/22
[27]: https://github.com/mbhall88/rasusa/issues/27
Expand All @@ -98,5 +101,5 @@ be 1070.
[28]: https://github.com/mbhall88/rasusa/pull/28
[benchmark]: https://github.com/mbhall88/rasusa#benchmark
[error-blog]: https://nick.groenen.me/posts/rust-error-handling/
[unreleased]: https://github.com/mbhall88/rasusa/compare/0.5.0...HEAD
[unreleased]: https://github.com/mbhall88/rasusa/compare/0.6.0...HEAD

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rasusa"
description = "Randomly subsample reads to a specified coverage"
version = "0.5.0"
version = "0.6.0"
authors = ["Michael Hall <michael@mbh.sh>"]
edition = "2018"
repository = "https://github.com/mbhall88/rasusa"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ The above will use the latest version. If you want to specify a version then use
[tag][quay.io] (or commit) like so.

```sh
VERSION="0.5.0"
VERSION="0.6.0"
URI="docker://quay.io/mbhall88/rasusa:${VERSION}"
```

Expand Down Expand Up @@ -162,7 +162,7 @@ else
echo "ERROR: $OS not a recognised operating system"
fi
if [ -n "$triple" ]; then
URL="https://github.com/mbhall88/rasusa/releases/download/0.5.0/rasusa-0.5.0-${triple}.tar.gz"
URL="https://github.com/mbhall88/rasusa/releases/download/0.6.0/rasusa-0.6.0-${triple}.tar.gz"
wget "$URL" -O - | tar -xzf -
./rasusa --help
fi
Expand All @@ -177,7 +177,7 @@ Currently, there are two pre-compiled binaries available:
An example of downloading one of these binaries using `wget`

```sh
URL="https://github.com/mbhall88/rasusa/releases/download/0.5.0/rasusa-0.5.0-x86_64-unknown-linux-musl.tar.gz"
URL="https://github.com/mbhall88/rasusa/releases/download/0.6.0/rasusa-0.6.0-x86_64-unknown-linux-musl.tar.gz"
wget "$URL" -O - | tar -xzf -
./rasusa --help
```
Expand Down Expand Up @@ -361,7 +361,7 @@ verbosity is switched on, you will additionally get "debug" level logging messag
```text
$ rasusa --help
rasusa 0.5.0
rasusa 0.6.0
Randomly subsample reads to a specified coverage.
USAGE:
Expand Down

0 comments on commit 8d9ce5e

Please sign in to comment.