diff --git a/CHANGELOG.md b/CHANGELOG.md index a2d4f0c..fac1a6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.2.0 (2023-07-27) + +### Feat + +- update `fracF()` for integer values +- **torch**: initialize `fracF` implementation +- **dfrt**: start importing functions for `dfrt` + +### Fix + +- incorrect calculation of `corefrmod2()` (#2) + ## 0.1.0 (2023-06-07) ### Feat diff --git a/pyproject.toml b/pyproject.toml index de4c157..76d0d19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "trainable-frft" -version = "0.1.0" +version = "0.2.0" description = "" authors = ["Tuna Alikaşifoğlu "] readme = "README.md" @@ -59,7 +59,7 @@ filterwarnings = ["ignore::DeprecationWarning"] [tool.commitizen] name = "cz_conventional_commits" tag_format = "$version" -version = "0.1.0" +version = "0.2.0" version_files = [ "pyproject.toml:^version", "trainable_frft/__init__.py:__version__", diff --git a/trainable_frft/__init__.py b/trainable_frft/__init__.py index 3dc1f76..d3ec452 100644 --- a/trainable_frft/__init__.py +++ b/trainable_frft/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.0"