diff --git a/docs/conf.py b/docs/conf.py index 8470c02a9..9ac33e248 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = "Lhotse development team" # The full version, including alpha/beta/rc tags -release = "1.7.0" +release = "1.8.0.dev" # -- General configuration --------------------------------------------------- diff --git a/lhotse/__init__.py b/lhotse/__init__.py index eaf6705ab..d24f018a7 100644 --- a/lhotse/__init__.py +++ b/lhotse/__init__.py @@ -33,7 +33,7 @@ # NOTE: REMEMBER TO UPDATE THE ACTUAL VERSION IN setup.py WHEN RELEASING # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # Use a default placeholder when the version is unavailable... - __version__ = "1.7.0+missing.version.file" + __version__ = "1.8.0.dev+missing.version.file" from . import augmentation, dataset, features, recipes diff --git a/setup.py b/setup.py index d4f9e4f4a..928409309 100644 --- a/setup.py +++ b/setup.py @@ -52,9 +52,9 @@ # NOTE: REMEMBER TO UPDATE THE FALLBACK VERSION IN lhotse/__init__.py WHEN RELEASING # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # MAJOR_VERSION = 1 -MINOR_VERSION = 7 +MINOR_VERSION = 8 PATCH_VERSION = 0 -IS_DEV_VERSION = False # False = public release, True = otherwise +IS_DEV_VERSION = True # False = public release, True = otherwise def discover_lhotse_version() -> str: