Skip to content

Commit 5f5d293

Browse files
committed
REL: v0.2.1
1 parent 650c742 commit 5f5d293

3 files changed

Lines changed: 26 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Diptest Changelog
2+
3+
## v0.2.1 -- March 2022
4+
5+
Patch release
6+
7+
### Changes
8+
9+
* Enforce C99 standard in CMake
10+
11+
## 0.2.0 -- March 2022
12+
13+
Initial release of the fork of https://github.com/alimuldal/diptest
14+
15+
### Changes
16+
17+
* Fixes a buffer overrun issue in `_dip.c` by reverting to the original C implementation
18+
* Python bindings using Pybind11 (C++) instead of Cython
19+
20+
### Enhancements
21+
22+
* P-value computation using bootstrapping has been moved down to C++ with optional parallelisation support through OpenMP
23+
* Removed overhead caused by debug branching statements by placing them under a compile-time definition
24+
* Added tests and wheel support

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CMAKE_MINIMUM_REQUIRED(VERSION 3.16)
22

33
IF (NOT DEFINED DIPTEST_VERSION_INFO)
4-
SET(DIPTEST_VERSION_INFO "0.1.0")
4+
SET(DIPTEST_VERSION_INFO "0.2.1")
55
ENDIF ()
66

77
PROJECT(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
MAJOR = 0
2424
REVISION = 2
25-
PATCH = 0
25+
PATCH = 1
2626
DEV = False
2727

2828
# note: also update README.rst

0 commit comments

Comments
 (0)