Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
mariogeiger committed Aug 12, 2022
1 parent 8ded89f commit 1ce83d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.8.0] - 2022-08-11
### Changed
- **breaking change** change the ordering of `Irrep`. Now it matches with `Irrep.iterator`.
- **breaking change** `Irrep("1e") == "1e"` and `Irreps("1e + 2e") == "1e + 2e"` are now `True`.
Expand Down
2 changes: 1 addition & 1 deletion e3nn_jax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.7.0"
__version__ = "0.8.0"

from ._config import config
from ._rotation import (
Expand Down
2 changes: 1 addition & 1 deletion e3nn_jax/_poly_envelope.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def poly_envelope(n0: int, n1: int) -> Callable[[float], float]:
x = jnp.linspace(0.0, 1.0, 100)
plt.plot(x, e3nn.poly_envelope(10, 5)(x), label="10, 5")
plt.plot(x, e3nn.poly_envelope(4, 4)(x), label="4, 4")
plt.plot(x, e3nn.poly_envelope(1, 2)(x), label="10, 10")
plt.plot(x, e3nn.poly_envelope(1, 2)(x), label="1, 2")
plt.legend()
Args:
Expand Down

0 comments on commit 1ce83d8

Please sign in to comment.