diff --git a/.gitignore b/.gitignore index 30f1bc7..45ab555 100644 --- a/.gitignore +++ b/.gitignore @@ -158,3 +158,6 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. .idea + +# Dynamically generated version file +numpy_minmax/_version.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d55278..dbfd7d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.1] - 2024-01-15 + +### Changes + +* Speed up the processing of 2D arrays slightly +* Use the SIMD-optimized algorithm for arrays with ndim > 2 +* Use the SIMD-optimized algorithm for F-contiguous ndarrays + ## [0.1.0] - 2024-01-11 Initial release diff --git a/pyproject.toml b/pyproject.toml index e577a2d..649fe4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta" [project] name = "numpy-minmax" -version = "0.1.0" -description = "A fast python library for finding both min and max in a NumPy array" +version = "0.1.1" +description = "A fast python library for finding both min and max value in a NumPy array" dependencies = [ "numpy>=1.21" ]