Skip to content

Commit

Permalink
[test]modify version to v0.1.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rhdong committed Mar 25, 2021
1 parent 1f805c5 commit 0bbf9ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tensorflow_recommenders_addons/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@

# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = "0"
_MINOR_VERSION = "0"
_PATCH_VERSION = "1"
_MINOR_VERSION = "1"
_PATCH_VERSION = "0"

# When building releases, we can update this value on the release branch to
# reflect the current release candidate ('rc0', 'rc1') or, finally, the official
# stable release (indicated by `_VERSION_SUFFIX = ''`). Outside the context of a
# release branch, the current version is by default assumed to be a
# 'development' version, labeled 'dev'.
_VERSION_SUFFIX = "dev"
_VERSION_SUFFIX = ""

# Example, '0.1.0-dev'
__version__ = ".".join([_MAJOR_VERSION, _MINOR_VERSION, _PATCH_VERSION])
Expand Down

0 comments on commit 0bbf9ed

Please sign in to comment.