From 5c586526dd78c7cdf5411c4ed20f22ab2b1f4ec8 Mon Sep 17 00:00:00 2001 From: Dave Rowenhorst <45666721+drowenhorst-nrl@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:10:33 -0400 Subject: [PATCH] Prepare for 0.3.6 release (#67) Signed-off by: David Rowenhorst --- CHANGELOG.rst | 16 +++++++++++++++- pyebsdindex/__init__.py | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 62acd3c..faad148 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,13 +5,27 @@ Changelog All notable changes to PyEBSDIndex will be documented in this file. The format is based on `Keep a Changelog `_. + +0.3.6 (2024-08-06) +================== + +Fixed +----- +- Fixed issue with newer versions of Ray and NVIDIA cards (maybe exclusively on Linux). + +Changed +------- +- Small adjustment on peak fitting suggested by W. Lenthe to put better limits on the peak fit. + Maybe especially useful for fitting noisy peaks. + + 0.3.5 (2024-06-07) ================== Fixed ----- - Further tweaking of NLPAR GPU memory limits for Apple-ARM. -- Many small type fixes for numpy 2.0 compatibillty. +- Many small type fixes for numpy 2.0 compatibility. - Corrected GPU detection for distributed indexing. - Fixed issue where slower machines would erroneously detect a GPU timeout. diff --git a/pyebsdindex/__init__.py b/pyebsdindex/__init__.py index a37c211..d5361fe 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.5" +__version__ = "0.3.6" # Try to import only once - also will perform check that at least one GPU is found.