Skip to content

Commit 1fe2ca5

Browse files
committed
Update version in __init__.py to 0.7.0
When 0.7.0 was released the version was not updated in __init__.py nor in test_basics.py. Fix this.
1 parent 9cd2821 commit 1fe2ca5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pinecone_datasets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.. include:: ../README.md
33
"""
44

5-
__version__ = "0.6.3"
5+
__version__ = "0.7.0"
66

77

88
from .dataset import Dataset, DatasetInitializationError

tests/unit/test_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515

1616
def test_version():
17-
assert __version__ == "0.6.3"
17+
assert __version__ == "0.7.0"

0 commit comments

Comments
 (0)