Skip to content

Commit

Permalink
Version bump to 0.5.1
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas A. Christensen II <[email protected]>
  • Loading branch information
MillironX committed Jan 24, 2022
1 parent dae880e commit 8ac0986
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.5.1] - 2022-01-24

### Added

- `--seed` parameter for fixing random seed

## [0.5.0]
## [0.5.0] - 2022-01-12

### Removed

Expand Down Expand Up @@ -111,7 +113,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
- `Haplotype`
- `Variant`

[Unreleased]: https://github.com/ksumngs/HapLink.jl/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/ksumngs/HapLink.jl/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/ksumngs/HapLink.jl/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/ksumngs/HapLink.jl/compare/v0.4.3...v0.5.0
[0.4.3]: https://github.com/ksumngs/HapLink.jl/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/ksumngs/HapLink.jl/compare/v0.4.1...v0.4.2
Expand Down
2 changes: 1 addition & 1 deletion CITATION.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ @misc{HapLink.jl
author = {Thomas A. Christensen II, Kansas State University, and contributors},
title = {HapLink.jl},
url = {https://github.com/ksumngs/HapLink.jl},
version = {v0.5.0},
version = {v0.5.1},
year = {2022},
month = {01}
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM ubuntu:focal

ENV JULIA_VERSION 1.6.5
ENV HAPLINK_VERSION 0.5.0
ENV HAPLINK_VERSION 0.5.1
ENV JULIA_DEPOT_PATH /.julia

# Install the build dependencies
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "HapLink"
uuid = "8ca39d33-de0d-4205-9b21-13a80f2b7eed"
authors = ["Thomas A. Christensen II, Kansas State University, and contributors"]
version = "0.5.0"
version = "0.5.1"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ If you need to use HapLink somewhere else, everything needed is available in a
To install our Hot-and-Ready binaries, run the following command:

```bash
mkdir -p ~/.local/opt/HapLink-0.5.0
curl -L https://github.com/ksumngs/HapLink.jl/releases/download/v0.5.0/HapLink-v0.5.0_linux.x86_64.tar.gz | tar xzv -C ~/.local/opt/HapLink-0.5.0
ln -s ~/.local/opt/HapLink-0.5.0/bin/haplink ~/.local/bin
mkdir -p ~/.local/opt/HapLink-0.5.1
curl -L https://github.com/ksumngs/HapLink.jl/releases/download/v0.5.1/HapLink-v0.5.1_linux.x86_64.tar.gz | tar xzv -C ~/.local/opt/HapLink-0.5.1
ln -s ~/.local/opt/HapLink-0.5.1/bin/haplink ~/.local/bin
```

### Julia Package
Expand All @@ -48,7 +48,7 @@ HapLink is not in the General Registry (yet!), so install using the `URL#tag`
syntax to use in the REPL.

```julia
using Pkg; Pkg.add("https://github.com/ksumngs/HapLink#v0.5.0")
using Pkg; Pkg.add("https://github.com/ksumngs/HapLink#v0.5.1")
```

## Usage
Expand Down

0 comments on commit 8ac0986

Please sign in to comment.