Skip to content

Commit 1ce83d8

Browse files
committed
update version
1 parent 8ded89f commit 1ce83d8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.8.0] - 2022-08-11
810
### Changed
911
- **breaking change** change the ordering of `Irrep`. Now it matches with `Irrep.iterator`.
1012
- **breaking change** `Irrep("1e") == "1e"` and `Irreps("1e + 2e") == "1e + 2e"` are now `True`.

e3nn_jax/__init__.py

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

33
from ._config import config
44
from ._rotation import (

e3nn_jax/_poly_envelope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def poly_envelope(n0: int, n1: int) -> Callable[[float], float]:
5151
x = jnp.linspace(0.0, 1.0, 100)
5252
plt.plot(x, e3nn.poly_envelope(10, 5)(x), label="10, 5")
5353
plt.plot(x, e3nn.poly_envelope(4, 4)(x), label="4, 4")
54-
plt.plot(x, e3nn.poly_envelope(1, 2)(x), label="10, 10")
54+
plt.plot(x, e3nn.poly_envelope(1, 2)(x), label="1, 2")
5555
plt.legend()
5656
5757
Args:

0 commit comments

Comments
 (0)