From dff6c92c80fbfac456349a531c0a4521c2b0c8f8 Mon Sep 17 00:00:00 2001 From: Quentin Lhoest Date: Tue, 21 Dec 2021 18:20:04 +0100 Subject: [PATCH] Release: 1.17.0 --- docs/source/conf.py | 2 +- setup.py | 2 +- src/datasets/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 3d29a74972a..ad67ab8e85c 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.16.1" +release = "1.17.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 5b07e2e9826..dcdb1dc5991 100644 --- a/setup.py +++ b/setup.py @@ -223,7 +223,7 @@ setup( name="datasets", - version="1.16.2.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.17.0", # 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 d2171e27a74..31c2052d74b 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.16.2.dev0" +__version__ = "1.17.0" import pyarrow from packaging import version as _version