Skip to content

Commit

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

## [Unreleased]

## [0.6.1]

### Added

- Warning if the actual coverage of the file(s) is less than the requested coverage
[[#36][36]]
- JOSS manuscript

### Changed

Expand Down Expand Up @@ -103,6 +106,7 @@ be 1070.
[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
[0.6.1]: https://github.com/mbhall88/rasusa/releases/tag/0.6.1
[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 @@ -113,5 +117,5 @@ be 1070.
[36]: https://github.com/mbhall88/rasusa/issues/36
[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.6.0...HEAD
[unreleased]: https://github.com/mbhall88/rasusa/compare/0.6.1...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.6.0"
version = "0.6.1"
authors = ["Michael Hall <michael@mbh.sh>"]
edition = "2018"
repository = "https://github.com/mbhall88/rasusa"
Expand Down
15 changes: 4 additions & 11 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.6.0"
VERSION="0.6.1"
URI="docker://quay.io/mbhall88/rasusa:${VERSION}"
```

Expand Down Expand Up @@ -154,6 +154,7 @@ brew install brewsci/bio/rasusa
current directory and show the help menu.

```shell
VERSION="0.6.1" # change accordingly
OS=$(uname -s)
if [ "$OS" = "Linux" ]; then
triple="x86_64-unknown-linux-musl"
Expand All @@ -163,7 +164,7 @@ else
echo "ERROR: $OS not a recognised operating system"
fi
if [ -n "$triple" ]; then
URL="https://github.com/mbhall88/rasusa/releases/download/0.6.0/rasusa-0.6.0-${triple}.tar.gz"
URL="https://github.com/mbhall88/rasusa/releases/download/${VERSION}/rasusa-${VERSION}-${triple}.tar.gz"
wget "$URL" -O - | tar -xzf -
./rasusa --help
fi
Expand All @@ -175,14 +176,6 @@ Currently, there are two pre-compiled binaries available:
- Linux kernel `x86_64-unknown-linux-musl` (works on most Linux distributions I tested)
- OSX kernel `x86_64-apple-darwin` (works for any post-2007 Mac)

An example of downloading one of these binaries using `wget`

```sh
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
```

If these binaries do not work on your system please raise an issue and I will
potentially add some additional [target triples][triples].

Expand Down Expand Up @@ -363,7 +356,7 @@ verbosity is switched on, you will additionally get "debug" level logging messag
```text
$ rasusa --help
rasusa 0.6.0
rasusa 0.6.1
Randomly subsample reads to a specified coverage.
USAGE:
Expand Down

0 comments on commit 5175fe9

Please sign in to comment.