Skip to content

Commit

Permalink
release version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBogdan committed Feb 8, 2021
1 parent ddd0173 commit dc3338a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion publishing.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
`git tag -a '<your tag>' -m '<some message for the tag>' && git push --tags`
tags are either in the form of `v0.2.5` or `v0.2.5rc0`.
9. Optional: install package locally by running `pip install .` and check if the version is set correctly.
8. Finally publish:\
10. Finally publish:\
`twine upload dist/*`
2 changes: 1 addition & 1 deletion test/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ def test_version(self):
Test the `__version__` global variable.
"""

self.assertEqual(weaviate.__version__, "2.1.0rc0", "Check if the version is set correctly!")
self.assertEqual(weaviate.__version__, "2.1.0", "Check if the version is set correctly!")
2 changes: 1 addition & 1 deletion weaviate/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Weaviate-Python-Client version.
"""

__version__ = "2.1.0rc0"
__version__ = "2.1.0"

0 comments on commit dc3338a

Please sign in to comment.