File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11CMAKE_MINIMUM_REQUIRED (VERSION 3.16 )
22
33IF (NOT DEFINED DIPTEST_VERSION_INFO)
4- SET (DIPTEST_VERSION_INFO "0.1.0 " )
4+ SET (DIPTEST_VERSION_INFO "0.2.1 " )
55ENDIF ()
66
77PROJECT (
Original file line number Diff line number Diff line change 2222
2323MAJOR = 0
2424REVISION = 2
25- PATCH = 0
25+ PATCH = 1
2626DEV = False
2727
2828# note: also update README.rst
You can’t perform that action at this time.
0 commit comments