Skip to content

Commit dc3338a

Browse files
committed
release version 2.1.0
1 parent ddd0173 commit dc3338a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

publishing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
`git tag -a '<your tag>' -m '<some message for the tag>' && git push --tags`
1212
tags are either in the form of `v0.2.5` or `v0.2.5rc0`.
1313
9. Optional: install package locally by running `pip install .` and check if the version is set correctly.
14-
8. Finally publish:\
14+
10. Finally publish:\
1515
`twine upload dist/*`

test/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ def test_version(self):
88
Test the `__version__` global variable.
99
"""
1010

11-
self.assertEqual(weaviate.__version__, "2.1.0rc0", "Check if the version is set correctly!")
11+
self.assertEqual(weaviate.__version__, "2.1.0", "Check if the version is set correctly!")

weaviate/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Weaviate-Python-Client version.
33
"""
44

5-
__version__ = "2.1.0rc0"
5+
__version__ = "2.1.0"

0 commit comments

Comments
 (0)