edgegraph.version

edgegraph.version#

Define version information for edgegraph.

You may also import the following constants from the edgegraph module directly:

import edgegraph
from edgegraph import version

edgegraph.VERSION_MAJOR == version.VERSION_MAJOR  # True
edgegraph.__version__ == version.__version__  # True

This is the ONLY place version information should be updated!!

Module Attributes

VERSION_MAJOR

major version number (the X in vX.Y.Z)

VERSION_MINOR

minor version number (the Y in vX.Y.Z)

VERSION_PATCH

patch version number (the Z in vX.Y.Z)