Skip to content

Commit 862e4bb

Browse files
author
Michael Hall
committed
bump version to 0.2.0
1 parent 43ca446 commit 862e4bb

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.0] (13/06/2022)
910
**BREAKING CHANGES**
1011

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

1415
### Removed
15-
- `-i/--ignore-case` - i.e., default is now to ignore case
16+
- `-i/--ignore-case` - i.e., default is now to ignore case [[#1][1]]
1617

1718
## [0.1.0] - 2021-11-04
1819

1920
### Added
2021

2122
Everything!
2223

23-
[Unreleased]: https://github.com/mbhall88/psdm/compare/0.1.0...HEAD
24-
[0.1.1]: https://github.com/0.1.0/compare/0.1.0...0.1.1
24+
[Unreleased]: https://github.com/mbhall88/psdm/compare/0.2.0...HEAD
25+
[0.2.0]: https://github.com/0.2.0/compare/0.1.0...0.2.0
26+
27+
[1]: https://github.com/mbhall88/psdm/issues/1

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "psdm"
33
description = "Compute a pairwise SNP distance matrix from one or two alignment(s)"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2018"
66
authors = ["Michael Hall <[email protected]>"]
77
repository = "https://github.com/mbhall88/psdm"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ $ conda install psdm
7272
the current directory and show the help menu.
7373

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

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

135135
```shell
136-
$ VERSION="0.1.0"
136+
$ VERSION="0.2.0"
137137
$ URI="docker://quay.io/mbhall88/psdm:${VERSION}"
138138
```
139139

@@ -297,7 +297,7 @@ $ psdm -o dists.csv aln1.fa
297297

298298
```
299299
$ psdm --help
300-
psdm 0.1.0
300+
psdm 0.2.0
301301
Michael Hall <[email protected]>
302302
Compute a pairwise SNP distance matrix from one or two alignment(s)
303303
@@ -412,7 +412,7 @@ Please also add a succinct description of the contribution in the
412412
month = nov,
413413
year = 2021,
414414
publisher = {Zenodo},
415-
version = {0.1.0},
415+
version = {0.2.0},
416416
doi = {10.5281/zenodo.5706785},
417417
url = {https://doi.org/10.5281/zenodo.5706785}
418418
}

0 commit comments

Comments
 (0)