From 50d5089ab8e97dce4cdb1673caeabc030c8d55c8 Mon Sep 17 00:00:00 2001 From: Mario Geiger Date: Fri, 5 Jan 2024 12:50:14 +0100 Subject: [PATCH] update version --- CHANGELOG.md | 8 ++++++++ e3nn_jax/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16ccba0..b292978 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.5] - 2024-01-05 +### Added +- `e3nn.ones` and `e3nn.ones_like` functions +- `e3nn.equinox` submodule + +### Fixed +- python 3.9 compatibility + ## [0.20.4] - 2023-12-24 ### Fixed - Fix `pyproject.toml`, the documenation build was broken. Thanks to @SauravMaheshkar! diff --git a/e3nn_jax/__init__.py b/e3nn_jax/__init__.py index 414c9b7..931f087 100644 --- a/e3nn_jax/__init__.py +++ b/e3nn_jax/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.20.4" +__version__ = "0.20.5" from e3nn_jax._src.config import config from e3nn_jax._src.rotation import ( diff --git a/pyproject.toml b/pyproject.toml index 1ce9d68..2657c21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "e3nn-jax" -version = "0.20.4" +version = "0.20.5" 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"},