diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5ec87c2..9b3da36 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,16 @@ Changelog All notable changes to PyEBSDIndex will be documented in this file. The format is based on `Keep a Changelog `_. +0.3.2 (2024-05-31) +================== + +Fixed +----- +- Fixed issues with smaller GPUs and NLPAR. +- Improved the initial write of NLPAR file under Windows. +- Fixed issue where user sends in non-numpy array of patterns to be indexed. + + 0.3.1 (2024-05-24) ================== diff --git a/pyebsdindex/__init__.py b/pyebsdindex/__init__.py index 44989a1..3704f6c 100644 --- a/pyebsdindex/__init__.py +++ b/pyebsdindex/__init__.py @@ -7,7 +7,7 @@ ] __description__ = "Python based tool for Radon based EBSD indexing" __name__ = "pyebsdindex" -__version__ = "0.3.1" +__version__ = "0.3.2" # Try to import only once - also will perform check that at least one GPU is found.