Skip to content

Commit fd31ef9

Browse files
committed
Bump version
1 parent 16e57a7 commit fd31ef9

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v1.3.7 (2022-07-17)
2+
- Implemented `tensor.ttt` (Issue #28, PR #44)
3+
- Fixed `tenmat` to accept empty arrays for `rdims` or `cdims` (Issue #42, PR #43)
4+
- Adding GitHub action to publish releases to PyPi
5+
16
# v1.3.6 (2022-07-15)
27
- Implemented `tensor.ttm` (Issue #27, PR #40)
38

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyttb"
3-
version = "1.3.6"
3+
version = "1.3.7"
44
description = "Python Tensor Toolbox"
55
authors = [
66
{name="Daniel M. Dunlavy", email="[email protected]"},

pyttb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
33
# U.S. Government retains certain rights in this software.
44

5-
__version__ = '1.3.6'
5+
__version__ = '1.3.7'
66

77
from pyttb.ktensor import ktensor
88
from pyttb.sptensor import sptensor

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='pyttb',
9-
version='1.3.6',
9+
version='1.3.7',
1010
packages=['pyttb'],
1111
package_dir={'': '.'},
1212
url='',

0 commit comments

Comments
 (0)