Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dmdunla committed Jul 18, 2022
1 parent 16e57a7 commit fd31ef9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"},
Expand Down
2 changes: 1 addition & 1 deletion pyttb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='pyttb',
version='1.3.6',
version='1.3.7',
packages=['pyttb'],
package_dir={'': '.'},
url='',
Expand Down

0 comments on commit fd31ef9

Please sign in to comment.