From ff8ade8d3b1c7a379b29baec5c03a6044ce0b3e1 Mon Sep 17 00:00:00 2001 From: Aleksandr Borzunov Date: Fri, 30 Dec 2022 21:52:57 +0000 Subject: [PATCH] Bump version to 1.0.0 --- setup.cfg | 2 +- src/petals/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index e8fbaed..15cdfe0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = petals -version = 1.0alpha1 +version = 1.0.0 author = Petals Developers author_email = petals-dev@googlegroups.com description = Easy way to efficiently run 100B+ language models without high-end GPUs diff --git a/src/petals/__init__.py b/src/petals/__init__.py index 9998543..667094c 100644 --- a/src/petals/__init__.py +++ b/src/petals/__init__.py @@ -1,6 +1,6 @@ from petals.client import * from petals.utils.logging import initialize_logs as _initialize_logs -__version__ = "1.0alpha1" +__version__ = "1.0.0" _initialize_logs()