diff --git a/setup.py b/setup.py index 7e06c90..42d1d81 100644 --- a/setup.py +++ b/setup.py @@ -175,7 +175,7 @@ def run(self): setup( name="speechbox", - version="0.1.2", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) + version="0.2.0", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) description="Speechbox", long_description=open("README.md", "r", encoding="utf-8").read(), long_description_content_type="text/markdown", diff --git a/src/speechbox/__init__.py b/src/speechbox/__init__.py index 5e40444..c1ce6ed 100644 --- a/src/speechbox/__init__.py +++ b/src/speechbox/__init__.py @@ -22,7 +22,7 @@ # to defer the actual importing for when the objects are requested. This way `import transformers` provides the names # in the namespace without actually importing anything (and especially none of the backends). -__version__ = "0.1.2" +__version__ = "0.2.0" from .utils import (is_accelerate_available, is_pyannote_available, is_scipy_available, is_torchaudio_available,