Skip to content

Commit

Permalink
bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhall88 committed Jun 13, 2022
1 parent 43ca446 commit 862e4bb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] (13/06/2022)
**BREAKING CHANGES**

### Added
- `-c/--case-sensitive` flag. To emulate previous default behaviour, use `-c`.

### Removed
- `-i/--ignore-case` - i.e., default is now to ignore case
- `-i/--ignore-case` - i.e., default is now to ignore case [[#1][1]]

## [0.1.0] - 2021-11-04

### Added

Everything!

[Unreleased]: https://github.com/mbhall88/psdm/compare/0.1.0...HEAD
[0.1.1]: https://github.com/0.1.0/compare/0.1.0...0.1.1
[Unreleased]: https://github.com/mbhall88/psdm/compare/0.2.0...HEAD
[0.2.0]: https://github.com/0.2.0/compare/0.1.0...0.2.0

[1]: https://github.com/mbhall88/psdm/issues/1
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 = "psdm"
description = "Compute a pairwise SNP distance matrix from one or two alignment(s)"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
authors = ["Michael Hall <[email protected]>"]
repository = "https://github.com/mbhall88/psdm"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $ conda install psdm
the current directory and show the help menu.

```shell
version="0.1.0"
version="0.2.0"
OS=$(uname -s)
if [ "$OS" = "Linux" ]; then
triple="x86_64-unknown-linux-musl"
Expand All @@ -97,7 +97,7 @@ Currently, there are two pre-compiled binaries available:
An example of downloading one of these binaries using `wget`

```shell
$ version="0.1.0"
$ version="0.2.0"
$ URL="https://github.com/mbhall88/psdm/releases/download/${version}/psdm-${version}-x86_64-unknown-linux-musl.tar.gz"
$ wget "$URL" -O - | tar -xzf -
$ ./psdm --help
Expand Down Expand Up @@ -133,7 +133,7 @@ The above will use the latest version. If you want to specify a version then use
[tag][quay.io] (or commit) like so.

```shell
$ VERSION="0.1.0"
$ VERSION="0.2.0"
$ URI="docker://quay.io/mbhall88/psdm:${VERSION}"
```

Expand Down Expand Up @@ -297,7 +297,7 @@ $ psdm -o dists.csv aln1.fa

```
$ psdm --help
psdm 0.1.0
psdm 0.2.0
Michael Hall <[email protected]>
Compute a pairwise SNP distance matrix from one or two alignment(s)
Expand Down Expand Up @@ -412,7 +412,7 @@ Please also add a succinct description of the contribution in the
month = nov,
year = 2021,
publisher = {Zenodo},
version = {0.1.0},
version = {0.2.0},
doi = {10.5281/zenodo.5706785},
url = {https://doi.org/10.5281/zenodo.5706785}
}
Expand Down

0 comments on commit 862e4bb

Please sign in to comment.