Skip to content

Commit

Permalink
bump: version 0.11.0 → 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rwnobrega committed Dec 6, 2024
1 parent 8c63739 commit ff93ade
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
> [!NOTE]
> Changelog started with version v0.10.0.
## v0.12.0 (2024-12-05)

### Added

- Implemented [Marcum Q-function](https://komm.dev/ref/marcum_q).

### Breaking changes

- Renamed `int2binlist` to `int_to_bits`, `binlist2int` to `bits_to_int`, `qfunc` to `gaussian_q`, `qfuncinv` to `gaussian_q_inv`, `acorr` to `autocorrelation`, and `cyclic_acorr` to `cyclic_autocorrelation`, for consistency with other functions.
- Removed `pack` and `unpack` functions from `komm` module. Instead of `komm.pack(arr, width)`, use `komm.bits_to_int(arr.reshape(-1, width))`; and instead of `komm.unpack(arr, width)`, use `komm.int_to_bits(arr, width).ravel()`.

## v0.11.0 (2024-12-01)

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "komm"
version = "0.11.0"
version = "0.12.0"
description = "An open-source library for Python 3 providing tools for analysis and simulation of analog and digital communication systems."
readme = "README.md"
authors = [{ name = "Roberto W. Nobrega", email = "[email protected]" }]
Expand Down

0 comments on commit ff93ade

Please sign in to comment.