diff --git a/CHANGELOG.md b/CHANGELOG.md index 92f1edee..424d138a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.3.5 (2022-07-12) +- Fixing `np.reshape` in `tensor.ttv` (Issue #37, PR #38) +- Fixing `np.reshape` in remainder of `tensor` (Issue #30, PR #39) + # v1.3.4 (2022-07-12) - Fixing issues with PyPi uploads diff --git a/pyproject.toml b/pyproject.toml index a23c3e32..7c1248fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyttb" -version = "1.3.4" +version = "1.3.5" description = "Python Tensor Toolbox" authors = [ {name="Daniel M. Dunlavy", email="dmdunla@sandia.gov"}, diff --git a/pyttb/__init__.py b/pyttb/__init__.py index e8917eef..e9bd8c9f 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.4' +__version__ = '1.3.5' from pyttb.ktensor import ktensor from pyttb.sptensor import sptensor diff --git a/setup.py b/setup.py index f5ac91a1..df19a148 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='pyttb', - version='1.3.4', + version='1.3.5', packages=['pyttb'], package_dir={'': '.'}, url='',