Skip to content

Commit aad6c74

Browse files
bump version
1 parent dfdb023 commit aad6c74

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Most recent change on the bottom.
88

99
## [Unreleased]
1010

11+
## 0.1.4 - 2021-11-7
12+
### Added
13+
- `opt_einsum_fx.__version__`
14+
- Partially symbolic shape propagation for efficient einsum optimization (#15)
15+
1116
## 0.1.3 - 2021-10-29
1217
### Added
1318
- PyTorch 1.10 compatability

opt_einsum_fx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.3"
1+
__version__ = "0.1.4"
22

33
from ._script import jitable
44
from ._opt_ein import optimize_einsums, optimize_einsums_full

setup.py

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

66
setuptools.setup(
77
name="opt_einsum_fx",
8-
version="0.1.3",
8+
version="0.1.4", # remember to update in `__init__.py` too!
99
author="Linux-cpp-lisp",
1010
url="https://github.com/Linux-cpp-lisp/opt_einsum_fx",
1111
description="Einsum optimization using opt_einsum and PyTorch FX",

0 commit comments

Comments
 (0)