Skip to content

Commit

Permalink
bump: version 0.2.0 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 31, 2023
1 parent 95d84a8 commit e0f18ef
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 0.3.0 (2023-07-31)

### Feat

- **ndim**: increase `ndim` compatibility
- **ndim**: start converting `fracF()` to supply `dim` selection
- implement `.mul()` with `nth` dimension
- initialize trainable module
- convert `bizdec()` & `bizinter()` to `ndim`

### Fix

- dimension check in `einstr` generation
- **ndim**: `corefrmod2()` for n-dimension
- with `ndim` update `fracF()` diff'able
- 1D tensor from `(N,1)` to `(N,)`
- remove `jax` based `dfrt` implementation

## 0.2.0 (2023-07-27)

### Feat
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "trainable-frft"
version = "0.2.0"
version = "0.3.0"
description = ""
authors = ["Tuna Alikaşifoğlu <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -50,7 +50,7 @@ filterwarnings = ["ignore::DeprecationWarning"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version = "0.2.0"
version = "0.3.0"
version_files = [
"pyproject.toml:^version",
"trainable_frft/__init__.py:__version__",
Expand Down
2 changes: 1 addition & 1 deletion trainable_frft/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.3.0"

0 comments on commit e0f18ef

Please sign in to comment.