Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Jan 15, 2024
1 parent f95550e commit 27a25b6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
Expand Down

0 comments on commit 27a25b6

Please sign in to comment.