From 939190a9dc34216fea15679c50e7efed8bce0ff5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 27 Jul 2023 01:51:36 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.1.0=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 4 ++-- trainable_frft/__init__.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) 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"