Skip to content

Commit

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

### BREAKING CHANGE

- The property `finite_state_machine` of `ConvolutionalCode` was converted to method.
- The properties `state_matrix`, `control_matrix`, `observation_matrix`, and `transition_matrix` were removed from `ConvolutionalCode`. The new usage is `state_matrix, control_matrix, observation_matrix, transition_matrix = convolutional_code.state_space_representation()`.

### Fix

- improve error reporting in `BlockDecoder` and `TerminatedConvolutionalCode`

### Refactor

- convert `finite_state_machine` property of `ConvolutionalCode` into method
- replace state-space representation properties with a single method returning all matrices

### Perf

- add `cache` decorator to state space representation method
- add `cached_property` decorator to `_tail_projector` and `_zs_multiplier` methods in termination strategies

## v0.10.0 (2024-11-29)

### Added
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.10.0"
version = "0.11.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 7d64c68

Please sign in to comment.