Skip to content

Commit

Permalink
Release v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Jul 13, 2024
1 parent 79e335f commit 0f804ac
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
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.4.2] - 2024-07-13

### Changed

* Optimize the processing of multichannel arrays

## [0.4.1] - 2024-07-09

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# numpy-rms: a fast function for calculating a series of Root Mean Square (RMS) values

* Written in C and takes advantage of AVX (on x86-64) or NEON (on ARM) for speed
* The fast implementation is tailored for contiguous 1-dimensional float32 arrays
* The fast implementation is tailored for C-contiguous 1-dimensional and 2-dimensional float32 arrays

# Installation

Expand All @@ -27,11 +27,11 @@ print(rms_series.shape) # (4,)

# Changelog

## [0.4.1] - 2024-07-09
## [0.4.2] - 2024-07-13

### Fixed
### Changed

* Fix multichannel processing in fallback function
* Optimize the processing of multichannel arrays

For the complete changelog, go to [CHANGELOG.md](CHANGELOG.md)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "numpy-rms"
authors = [
{name = "Iver Jordal"}
]
version = "0.4.1"
version = "0.4.2"
description = "A fast python library for calculating the RMS of a NumPy array"
dependencies = [
"cffi>=1.0.0",
Expand Down

0 comments on commit 0f804ac

Please sign in to comment.