diff --git a/setup.cfg b/setup.cfg index 3ba993ea0..ad197d1e9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = petals -version = 1.0.0 +version = attr: petals.__version__ 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 667094c50..13b2cd460 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.0.0" +__version__ = "1.1.0" _initialize_logs()