Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nromashchenko committed Apr 11, 2022
1 parent 797a195 commit b9be479
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v0.3.1
- Fixed a bug that sometimes lead to scores of phylo-k-mers to be lower than expected
- Added --uncompressed flag (disables ZLIB compression of databases)
- Relaxed restrictions on the value of k (now 31 for DNA and 13 for proteins)
- --ar-dir now supports the results of RAxML-ng
- Fixed a crash happened for extremely high values of omega
- Minor changes of the python wrapper

v0.3.0
XPAS BUILD:
- Database construction code moved to xpas.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.10)
project(xpas LANGUAGES CXX VERSION 0.3.0)
project(xpas LANGUAGES CXX VERSION 0.3.1)

# default build type Release
if(NOT CMAKE_BUILD_TYPE)
Expand Down
4 changes: 2 additions & 2 deletions xpas/include/xpas/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ namespace xpas
struct version
{
static constexpr auto major = "0";
static constexpr auto minor = "2";
static constexpr auto revision = "0";
static constexpr auto minor = "3";
static constexpr auto revision = "1";

/// \brief Returns the core version number as a string
static std::string as_string()
Expand Down

0 comments on commit b9be479

Please sign in to comment.