diff --git a/CHANGELOG.md b/CHANGELOG.md index fe237408..55b5b561 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v1.3.7 (2022-07-17) +- Implemented `tensor.ttt` (Issue #28, PR #44) +- Fixed `tenmat` to accept empty arrays for `rdims` or `cdims` (Issue #42, PR #43) +- Adding GitHub action to publish releases to PyPi + # v1.3.6 (2022-07-15) - Implemented `tensor.ttm` (Issue #27, PR #40) diff --git a/pyproject.toml b/pyproject.toml index a6a08f44..96a63e7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyttb" -version = "1.3.6" +version = "1.3.7" description = "Python Tensor Toolbox" authors = [ {name="Daniel M. Dunlavy", email="dmdunla@sandia.gov"}, diff --git a/pyttb/__init__.py b/pyttb/__init__.py index 5e345c23..f4c82587 100644 --- a/pyttb/__init__.py +++ b/pyttb/__init__.py @@ -2,7 +2,7 @@ # LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the # U.S. Government retains certain rights in this software. -__version__ = '1.3.6' +__version__ = '1.3.7' from pyttb.ktensor import ktensor from pyttb.sptensor import sptensor diff --git a/setup.py b/setup.py index 492abe45..a0e74d95 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='pyttb', - version='1.3.6', + version='1.3.7', packages=['pyttb'], package_dir={'': '.'}, url='',