From aa9fbfaa153bcf0a74dd069a692192077bc98c04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBelasko?= Date: Wed, 16 Nov 2022 15:15:38 -0500 Subject: [PATCH 1/2] Release v1.10 --- docs/conf.py | 2 +- lhotse/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 583290b4c..f1dea9517 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.10.0.dev" +release = "1.10.0" # -- General configuration --------------------------------------------------- diff --git a/lhotse/__init__.py b/lhotse/__init__.py index 4959b7476..99b4b56a6 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.10.0.dev+missing.version.file" + __version__ = "1.10.0+missing.version.file" from . import augmentation, dataset, features, recipes diff --git a/setup.py b/setup.py index 8a66b0db3..96adeca10 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ MAJOR_VERSION = 1 MINOR_VERSION = 10 PATCH_VERSION = 0 -IS_DEV_VERSION = True # False = public release, True = otherwise +IS_DEV_VERSION = False # False = public release, True = otherwise if sys.version_info < (3,): From df7635bffbd7f35af56694e6bd18c11b06eb5a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBelasko?= Date: Wed, 16 Nov 2022 15:16:48 -0500 Subject: [PATCH 2/2] Bump dev version to 1.11.0.dev --- 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 f1dea9517..bf47003d3 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.10.0" +release = "1.11.0.dev" # -- General configuration --------------------------------------------------- diff --git a/lhotse/__init__.py b/lhotse/__init__.py index 99b4b56a6..d8d495871 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.10.0+missing.version.file" + __version__ = "1.11.0.dev+missing.version.file" from . import augmentation, dataset, features, recipes diff --git a/setup.py b/setup.py index 96adeca10..e34cf59e7 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 = 10 +MINOR_VERSION = 11 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,):