Skip to content

Commit

Permalink
Bump dev version to 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
pzelasko committed Sep 30, 2022
1 parent b531a18 commit 8db6a02
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = "Lhotse development team"

# The full version, including alpha/beta/rc tags
release = "1.8.0"
release = "1.9.0.dev"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion lhotse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0+missing.version.file"
__version__ = "1.9.0.dev+missing.version.file"

from . import augmentation, dataset, features, recipes

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
# NOTE: REMEMBER TO UPDATE THE FALLBACK VERSION IN lhotse/__init__.py WHEN RELEASING #
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! #
MAJOR_VERSION = 1
MINOR_VERSION = 8
MINOR_VERSION = 9
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,):
Expand Down

0 comments on commit 8db6a02

Please sign in to comment.