Skip to content

Commit

Permalink
Merge pull request #34 from opentensor/release_versioning
Browse files Browse the repository at this point in the history
Release versioning
  • Loading branch information
Eugene-hu committed Oct 2, 2023
2 parents f9a1655 + d2fd0c2 commit d86d5f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prompting/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from . import protocol

__version__ = "0.0.1"
__version__ = "1.0.0"
version_split = __version__.split(".")
__spec_version__ = (
(1000 * int(version_split[0]))
Expand Down
2 changes: 1 addition & 1 deletion prompting/validators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from . import event
from . import dataset

__version__ = "1.2.0"
__version__ = "2.0.0"
version_split = __version__.split(".")
__spec_version__ = (
(1000 * int(version_split[0]))
Expand Down

0 comments on commit d86d5f5

Please sign in to comment.