Skip to content

Commit

Permalink
Bump version to 1.4.0rc2 #209
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoomakethu committed Dec 22, 2017
1 parent 668612e commit 1e1af47
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pymodbus/version.py
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
'''
"""
Handle the version information here; you should only have to
change the version tuple.
Since we are using twisted's version class, we can also query
the svn version as well using the local .entries file.
'''
"""


class Version(object):

def __init__(self, package, major, minor, micro, pre=None):
'''
"""
:param package: Name of the package that this is a version of.
:param major: The major version number.
:param minor: The minor version number.
:param micro: The micro version number.
:param pre: The pre release tag
'''
"""
self.package = package
self.major = major
self.minor = minor
self.micro = micro
self.pre = pre

def short(self):
''' Return a string in canonical short version format
""" Return a string in canonical short version format
<major>.<minor>.<micro>.<pre>
'''
"""
if self.pre:
return '%d.%d.%d.%s' % (self.major, self.minor, self.micro, self.pre)
else:
return '%d.%d.%d' % (self.major, self.minor, self.micro)

def __str__(self):
''' Returns a string representation of the object
""" Returns a string representation of the object
:returns: A string representation of this object
'''
"""
return '[%s, version %s]' % (self.package, self.short())


version = Version('pymodbus', 1, 4, 0, "rc1")

version = Version('pymodbus', 1, 4, 0, "rc2")


version.__name__ = 'pymodbus' # fix epydoc error

#---------------------------------------------------------------------------#
# --------------------------------------------------------------------------- #
# Exported symbols
#---------------------------------------------------------------------------#
# --------------------------------------------------------------------------- #

__all__ = ["version"]

0 comments on commit 1e1af47

Please sign in to comment.