Skip to content

Commit e23a59e

Browse files
authored
set dev version (#6547)
1 parent 7b2bcd7 commit e23a59e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253

254254
setup(
255255
name="datasets",
256-
version="2.16.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)
256+
version="2.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)
257257
description="HuggingFace community-driven open-source library of datasets",
258258
long_description=open("README.md", encoding="utf-8").read(),
259259
long_description_content_type="text/markdown",

src/datasets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# pylint: enable=line-too-long
1818
# pylint: disable=g-import-not-at-top,g-bad-import-order,wrong-import-position
1919

20-
__version__ = "2.16.1"
20+
__version__ = "2.16.2.dev0"
2121

2222
from .arrow_dataset import Dataset
2323
from .arrow_reader import ReadInstruction

0 commit comments

Comments
 (0)