Skip to content

Commit

Permalink
updated version number to 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
xflouris committed Sep 11, 2023
1 parent 04a4160 commit 72c8fd2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
6 changes: 5 additions & 1 deletion man/mptp.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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

0 comments on commit 72c8fd2

Please sign in to comment.