From cc739f424bc44366dfb6c7bafc3fd4ffdb197844 Mon Sep 17 00:00:00 2001 From: Mario Geiger Date: Fri, 26 Jan 2024 09:14:39 +0100 Subject: [PATCH] update version --- CHANGELOG.md | 2 ++ e3nn_jax/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cabb7ce..3d1fbe1 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.20.6] - 2024-01-26 ### Added - `e3nn.where` function - Add optional `mask` argument in `e3nn.flax.BatchNorm` diff --git a/e3nn_jax/__init__.py b/e3nn_jax/__init__.py index 1b71bbe..351b81a 100644 --- a/e3nn_jax/__init__.py +++ b/e3nn_jax/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.20.5" +__version__ = "0.20.6" from e3nn_jax._src.config import config from e3nn_jax._src.rotation import ( diff --git a/pyproject.toml b/pyproject.toml index 2657c21..02766d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "e3nn-jax" -version = "0.20.5" +version = "0.20.6" 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"},