diff --git a/CHANGELOG.md b/CHANGELOG.md index 738176f..16ccba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.20.4] - 2023-12-24 +### Fixed +- Fix `pyproject.toml`, the documenation build was broken. Thanks to @SauravMaheshkar! + +### Added +- Support for [`s2fft`](https://github.com/astro-informatics/s2fft) in `e3nn.to_s2grid` and `e3nn.from_s2grid`, thanks to @ameya98! +- Add a special case implementation for `e3nn.scatter_mean` when `map_back and nel is not None`. + ## [0.20.3] - 2023-11-17 ### Added - `e3nn.flax.BatchNorm` diff --git a/e3nn_jax/__init__.py b/e3nn_jax/__init__.py index 33836d5..8bb3b4d 100644 --- a/e3nn_jax/__init__.py +++ b/e3nn_jax/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.20.3" +__version__ = "0.20.4" from e3nn_jax._src.config import config from e3nn_jax._src.rotation import ( diff --git a/pyproject.toml b/pyproject.toml index 3149258..8f5e152 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "e3nn-jax" -version = "0.20.3" +version = "0.20.4" description = "Equivariant convolutional neural networks for the group E(3) of 3 dimensional rotations, translations, and mirrors." authors=[ {name="e3nn team", email="geiger.mario@gmail.com"},