From f65eeed60abde0db8143697c6e9d53d11ddc6b55 Mon Sep 17 00:00:00 2001 From: Alex Rogozhnikov Date: Sat, 30 Sep 2023 18:03:28 -0700 Subject: [PATCH] set version to 0.7.0 --- README.md | 4 ++-- einops/__init__.py | 2 +- scripts/setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 87c408b9..4688b92f 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ Supports numpy, pytorch, tensorflow, jax, and [others](#supported-frameworks). ## Recent updates: -- 0.7.0rc2: no-hassle `torch.compile`, support of [array api standard](https://data-apis.org/array-api/latest/API_specification/index.html) and more -- 10'000: github reports that more than 10k project use einops 🎂 +- 0.7.0: no-hassle `torch.compile`, support of [array api standard](https://data-apis.org/array-api/latest/API_specification/index.html) and more +- 10'000🎉: github reports that more than 10k project use einops - see how to use einops with [torch.compile](https://github.com/arogozhnikov/einops/wiki/Using-torch.compile-with-einops) - einops 0.6.1: paddle backend added - einops 0.6 introduces [packing and unpacking](https://github.com/arogozhnikov/einops/blob/master/docs/4-pack-and-unpack.ipynb) diff --git a/einops/__init__.py b/einops/__init__.py index d18472f9..a24af7ac 100644 --- a/einops/__init__.py +++ b/einops/__init__.py @@ -1,5 +1,5 @@ __author__ = 'Alex Rogozhnikov' -__version__ = '0.7.0rc2' +__version__ = '0.7.0' class EinopsError(RuntimeError): diff --git a/scripts/setup.py b/scripts/setup.py index 0ba73447..0a85e38e 100644 --- a/scripts/setup.py +++ b/scripts/setup.py @@ -8,7 +8,7 @@ setup( name="einops", - version="0.7.0rc2", + version="0.7.0", description="A new flavour of deep learning operations", long_description=open("README.md", encoding="utf-8").read(), long_description_content_type="text/markdown",