Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 62 additions & 56 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,56 +1,62 @@
## [1.5.0] - 2026-04-15

### Added

- 2nd and `p` matrix norms

### Removed

- `autopep8` from `pre-commit` config

## [1.4.0] - 2026-03-31

### Added

- LU decomposition

## [1.3.0] - 2026-03-20

### Added

- Matrix multiplication report

### Fixed

- `md` report generation - images and code blocks

## [1.2.0] - 2026-03-19

### Added

- Strassen matrix multiplication algorithm

## [1.1.0] - 2026-03-18

### Added

- automated report generation

## [1.0.0] - 2026-03-18

### Added

- standard matrix multiplication algorithm
- CI

## Fixed

- python version in `pre-commit` config

## [0.0.1] - 2026-03-18

### Added

- [pre-commit](https://pre-commit.com/)
- setup script
- changelog
## [1.6.0] - 2026-04-18

### Added

- SVD report

## [1.5.0] - 2026-04-15

### Added

- 2nd and `p` matrix norms

### Removed

- `autopep8` from `pre-commit` config

## [1.4.0] - 2026-03-31

### Added

- LU decomposition

## [1.3.0] - 2026-03-20

### Added

- Matrix multiplication report

### Fixed

- `md` report generation - images and code blocks

## [1.2.0] - 2026-03-19

### Added

- Strassen matrix multiplication algorithm

## [1.1.0] - 2026-03-18

### Added

- automated report generation

## [1.0.0] - 2026-03-18

### Added

- standard matrix multiplication algorithm
- CI

## Fixed

- python version in `pre-commit` config

## [0.0.1] - 2026-03-18

### Added

- [pre-commit](https://pre-commit.com/)
- setup script
- changelog
Binary file modified notebooks/resources/matrix_norms.pdf
Binary file not shown.
Binary file added notebooks/resources/svd.pdf
Binary file not shown.
1,119 changes: 1,119 additions & 0 deletions notebooks/svd.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "matrix_calculus"
version = "1.5.0"
version = "1.6.0"
description = "Matrix calculus toolkit"
requires-python = ">=3.10"
dependencies = ["numpy", "seaborn", "matplotlib", "weasyprint", "markdown", "notebook", "nbconvert[webpdf]"]
Expand Down
Loading