From fe9d81d577dec5a224d572a5bc7d44ab8bd914eb Mon Sep 17 00:00:00 2001 From: Alex Rogozhnikov Date: Sun, 28 Apr 2024 03:56:14 +0000 Subject: [PATCH] bump version to 0.8.0 --- einops/__init__.py | 2 +- einops/layers/tensorflow.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/einops/__init__.py b/einops/__init__.py index 14de0671..7e063ed0 100644 --- a/einops/__init__.py +++ b/einops/__init__.py @@ -2,7 +2,7 @@ # ruff: noqa: E402 __author__ = "Alex Rogozhnikov" -__version__ = "0.7.0" +__version__ = "0.8.0" class EinopsError(RuntimeError): diff --git a/einops/layers/tensorflow.py b/einops/layers/tensorflow.py index 2c333a42..22acf34f 100644 --- a/einops/layers/tensorflow.py +++ b/einops/layers/tensorflow.py @@ -6,7 +6,7 @@ Layers in einops==0.7.0 (and several prior versions) are compatible with TF 2.13 -Layers in einops==0.7.1 were re-implemented +Layers in einops==0.8.0 were re-implemented according to official instructions for TF 2.16 """