Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso authored Dec 2, 2020
1 parent 0349cd8 commit ee44812
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pyblish_lite/version.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@

VERSION_MAJOR = 0
VERSION_MINOR = 8
VERSION_PATCH = 8
VERSION_BETA = "b3"
VERSION_PATCH = 9

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_BETA)
version = '%i.%i.%i%s' % version_info
version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
__version__ = version

__all__ = ['version', 'version_info', '__version__']

0 comments on commit ee44812

Please sign in to comment.