From 1ce83d81e969a08bece2dc6f76d52638e491bc3c Mon Sep 17 00:00:00 2001 From: Mario Geiger Date: Thu, 11 Aug 2022 20:03:25 -0400 Subject: [PATCH] update version --- ChangeLog.md | 2 ++ e3nn_jax/__init__.py | 2 +- e3nn_jax/_poly_envelope.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 96000a93..1a89e09e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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`. diff --git a/e3nn_jax/__init__.py b/e3nn_jax/__init__.py index e3bebadb..70f82de4 100644 --- a/e3nn_jax/__init__.py +++ b/e3nn_jax/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.7.0" +__version__ = "0.8.0" from ._config import config from ._rotation import ( diff --git a/e3nn_jax/_poly_envelope.py b/e3nn_jax/_poly_envelope.py index 23c85ea2..2a2b6e6e 100644 --- a/e3nn_jax/_poly_envelope.py +++ b/e3nn_jax/_poly_envelope.py @@ -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: