Skip to content

Commit 0bbf9ed

Browse files
committed
[test]modify version to v0.1.0 for release
1 parent 1f805c5 commit 0bbf9ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tensorflow_recommenders_addons/version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020

2121
# We follow Semantic Versioning (https://semver.org/)
2222
_MAJOR_VERSION = "0"
23-
_MINOR_VERSION = "0"
24-
_PATCH_VERSION = "1"
23+
_MINOR_VERSION = "1"
24+
_PATCH_VERSION = "0"
2525

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

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

0 commit comments

Comments
 (0)