diff --git a/CHANGELOG.md b/CHANGELOG.md index aec2571..46ba894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.6.0 (2023-08-27) + +### Feat + +- implement shifted version of `frft()` + ## 0.5.4 (2023-08-18) ### Fix diff --git a/CITATION.cff b/CITATION.cff index 7764a2b..3dd71de 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,6 +5,6 @@ authors: given-names: "Tuna" orcid: "https://orcid.org/0000-0001-8030-8088" title: "PyTorch Differentiable Fractional Fourier Transform" -version: 0.5.4 +version: 0.6.0 date-released: 2023-08-08 url: "https://github.com/tunakasif/torch-frft" diff --git a/pyproject.toml b/pyproject.toml index 8da4cf1..2d88ff4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "torch-frft" -version = "0.5.4" +version = "0.6.0" description = "PyTorch implementation of the fractional Fourier transform with trainable transform order." authors = ["Tuna Alikaşifoğlu "] readme = "README.md" @@ -54,7 +54,7 @@ filterwarnings = ["ignore::DeprecationWarning"] [tool.commitizen] name = "cz_conventional_commits" tag_format = "$version" -version = "0.5.4" +version = "0.6.0" version_files = [ "pyproject.toml:^version", "torch_frft/__init__.py:__version__", diff --git a/torch_frft/__init__.py b/torch_frft/__init__.py index 6b27eee..906d362 100644 --- a/torch_frft/__init__.py +++ b/torch_frft/__init__.py @@ -1 +1 @@ -__version__ = "0.5.4" +__version__ = "0.6.0"