From 7d9fd0d93205193c328439ea4a75f9b4d0c65c65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBelasko?= Date: Thu, 20 Oct 2022 14:26:38 -0400 Subject: [PATCH] Bump dev version to 1.10 --- docs/conf.py | 2 +- lhotse/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 4cef58671..583290b4c 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.9.0" +release = "1.10.0.dev" # -- General configuration --------------------------------------------------- diff --git a/lhotse/__init__.py b/lhotse/__init__.py index ed40ffb77..4959b7476 100644 --- a/lhotse/__init__.py +++ b/lhotse/__init__.py @@ -34,7 +34,7 @@ # NOTE: REMEMBER TO UPDATE THE ACTUAL VERSION IN setup.py WHEN RELEASING # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # Use a default placeholder when the version is unavailable... - __version__ = "1.9.0+missing.version.file" + __version__ = "1.10.0.dev+missing.version.file" from . import augmentation, dataset, features, recipes diff --git a/setup.py b/setup.py index 8ef15054f..8a66b0db3 100644 --- a/setup.py +++ b/setup.py @@ -53,9 +53,9 @@ # NOTE: REMEMBER TO UPDATE THE FALLBACK VERSION IN lhotse/__init__.py WHEN RELEASING # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # MAJOR_VERSION = 1 -MINOR_VERSION = 9 +MINOR_VERSION = 10 PATCH_VERSION = 0 -IS_DEV_VERSION = False # False = public release, True = otherwise +IS_DEV_VERSION = True # False = public release, True = otherwise if sys.version_info < (3,):