diff --git a/ChangeLog.md b/ChangeLog.md index 9a168bb..9373719 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,13 @@ All notable changes to `mptp` will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.2.5] - 2023-09-11 +### Added + - Likelihood ratio test for the multi method + - Added implementation for the incomplete gamma function +### Removed + - Dependency for GNU scientific library + ## [0.2.4] - 2018-05-14 ### Fixed - If we do not manage to generate a random starting delimitation with the diff --git a/README.md b/README.md index 382add1..9cc6676 100644 --- a/README.md +++ b/README.md @@ -78,9 +78,9 @@ where `DIR` is the directory where bash autocompletion is stored. You can use and the documentation, use the following commands: ```bash -wget https://github.com/Pas-Kapli/mptp/releases/download/v0.2.4/mptp-src-0.2.4.tar.gz -tar zxvf mptp-src-0.2.4.tar.gz -cd mptp-src-0.2.4 +wget https://github.com/Pas-Kapli/mptp/releases/download/v0.2.5/mptp-src-0.2.5.tar.gz +tar zxvf mptp-src-0.2.5.tar.gz +cd mptp-src-0.2.5 ./configure make make install # as root, or run sudo make install @@ -110,12 +110,12 @@ To use the pre-compiled binary, download the appropriate executable for your system using the following commands if you are using a Linux system: ```bash -wget https://github.com/Pas-Kapli/mptp/releases/download/v0.2.4/mptp-0.2.4-linux-x86_64.tar.gz -tar zxvf mptp-0.2.4-linux-x86_64.tar.gz +wget https://github.com/Pas-Kapli/mptp/releases/download/v0.2.5/mptp-0.2.5-linux-x86_64.tar.gz +tar zxvf mptp-0.2.5-linux-x86_64.tar.gz ``` You will now have the binary distribution in a folder called -`mptp-0.2.4-linux-x86_64` in which you will find three subfolders `bin`, `man` +`mptp-0.2.5-linux-x86_64` in which you will find three subfolders `bin`, `man` and `doc`. We recommend making a copy or a symbolic link to the mptp binary `bin/mptp` in a folder included in your `$PATH`, and a copy or a symbolic link to the mptp man page `man/mptp.1` in a folder included in your `$MANPATH`. The diff --git a/configure.ac b/configure.ac index 80bcd1d..ca058e2 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) -AC_INIT([mptp], [0.2.4], [t.flouris@ucl.ac.uk]) +AC_INIT([mptp], [0.2.5], [t.flouris@ucl.ac.uk]) AM_INIT_AUTOMAKE([subdir-objects]) AC_LANG([C]) AC_CONFIG_SRCDIR([src/mptp.c]) diff --git a/man/mptp.1 b/man/mptp.1 index fea91df..80a1ad1 100644 --- a/man/mptp.1 +++ b/man/mptp.1 @@ -1,6 +1,6 @@ .\" -*- coding: utf-8 -*- .\" ============================================================================ -.TH mptp 1 "May 14, 2018" "mptp 0.2.4" "USER COMMANDS" +.TH mptp 1 "Sep 11, 2023" "mptp 0.2.5" "USER COMMANDS" .\" ============================================================================ .SH NAME mptp \(em single-locus species delimitation @@ -359,5 +359,9 @@ Replaced hsearch() with custom hashtable. Fixed minor output error messages. If we do not manage to generate a random starting delimitation with the wanted number of species (randomly chosen), we use the currently generated delimitation instead. +.TP +.BR v0.2.5\~ "released Sep 9th, 2023" +Added likelihood ratio test for the multi method. Added implementation for the +incomplete gamma function, and removed dependency for GNU scientific library. .RE .LP