Skip to content

Commit

Permalink
bump versin to 0.5.0 to reflect non-backwards-compatible changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mklarqvist committed Sep 7, 2018
1 parent 8e2f15a commit 2d3079b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Build Status](https://travis-ci.org/mklarqvist/tachyon.svg?branch=master)](https://travis-ci.org/mklarqvist/tachyon)
[![Release](https://img.shields.io/badge/Release-beta_0.4.0-blue.svg)](https://github.com/mklarqvist/Tachyon/releases)
[![Release](https://img.shields.io/badge/Release-beta_0.5.0-blue.svg)](https://github.com/mklarqvist/Tachyon/releases)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

<div align="center">
Expand Down Expand Up @@ -77,7 +77,7 @@ Interested in contributing? Fork and submit a pull request and it will be review
We are actively developing Tachyon and are always interested in improving its quality. If you run into an issue, please report the problem on our Issue tracker. Be sure to add enough detail to your report that we can reproduce the problem and address it. We have not reached version 1.0 and as such the specification and/or the API interfaces may change.

### Version
This is Tachyon 0.4.0. Tachyon follows [semantic versioning](https://semver.org/).
This is Tachyon 0.5.0. Tachyon follows [semantic versioning](https://semver.org/).

### History
Tachyon grew out of the [Tomahawk][tomahawk] project for calculating genome-wide linkage-disequilibrium.
Expand Down
2 changes: 1 addition & 1 deletion lib/support/magic_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extern std::string INTERPRETED_COMMAND;

/*------ Version ------*/
const int32_t TACHYON_VERSION_MAJOR = 0;
const int32_t TACHYON_VERSION_MINOR = 4;
const int32_t TACHYON_VERSION_MINOR = 5;
const int32_t TACHYON_VERSION_PATCH = 0;
const int32_t TACHYON_VERSION_NUMBER = (TACHYON_VERSION_MAJOR *100*100 + TACHYON_VERSION_MINOR *100 + TACHYON_VERSION_PATCH);
const std::string TACHYON_LIB_VERSION = std::to_string(TACHYON_VERSION_MAJOR) + '.' + std::to_string(TACHYON_VERSION_MINOR) + '.' + std::to_string(TACHYON_VERSION_PATCH);
Expand Down

0 comments on commit 2d3079b

Please sign in to comment.