From 2026be6ed34507a9c4ca49e2103652e833ff17a3 Mon Sep 17 00:00:00 2001 From: Mario Geiger Date: Fri, 17 Nov 2023 12:39:13 +0100 Subject: [PATCH] update version --- ChangeLog.md | 2 ++ e3nn_jax/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index f30902a..738176f 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.3] - 2023-11-17 ### Added - `e3nn.flax.BatchNorm` - `e3nn.scatter_mean` diff --git a/e3nn_jax/__init__.py b/e3nn_jax/__init__.py index f2d16da..0b8326e 100644 --- a/e3nn_jax/__init__.py +++ b/e3nn_jax/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.20.2" +__version__ = "0.20.3" from e3nn_jax._src.config import config from e3nn_jax._src.rotation import ( diff --git a/pyproject.toml b/pyproject.toml index 9a6f0e8..a8a39b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools"] [project] name = "e3nn_jax" -version = "0.20.2" +version = "0.20.3" dependencies = [ "jax", "jaxlib", diff --git a/setup.py b/setup.py index f8135f2..dce0281 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="e3nn-jax", - version="0.20.2", + version="0.20.3", description="Equivariant convolutional neural networks for the group E(3).", long_description=_long_description, long_description_content_type="text/markdown",