diff --git a/docs/source/conf.py b/docs/source/conf.py index 175c592409b..178e93d4565 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "1.15.0" +release = "1.15.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 1cce2fd54b8..d4fc9cd954b 100644 --- a/setup.py +++ b/setup.py @@ -218,7 +218,7 @@ setup( name="datasets", - version="1.15.1.dev0", # 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="1.15.1", # 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="HuggingFace community-driven open-source library of datasets", long_description=open("README.md", "r", encoding="utf-8").read(), long_description_content_type="text/markdown", diff --git a/src/datasets/__init__.py b/src/datasets/__init__.py index 727bb073ce8..d6bbf789f5b 100644 --- a/src/datasets/__init__.py +++ b/src/datasets/__init__.py @@ -18,7 +18,7 @@ # pylint: enable=line-too-long # pylint: disable=g-import-not-at-top,g-bad-import-order,wrong-import-position -__version__ = "1.15.0.dev0" +__version__ = "1.15.1" import pyarrow from packaging import version as _version