Skip to content

Commit

Permalink
Fix docs revision
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed May 31, 2019
1 parent 4a29451 commit 09be864
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clickhouse_driver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .client import Client


VERSION = (0, 0, 19)
VERSION = (0, 0, 20)
__version__ = '.'.join(str(x) for x in VERSION)

__all__ = ['Client']
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

from clickhouse_driver import __version__

# -- Project information -----------------------------------------------------

Expand All @@ -26,7 +27,7 @@
# The short X.Y version
version = u'0.0'
# The full version, including alpha/beta/rc tags
release = u'0.0.16'
release = __version__


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 09be864

Please sign in to comment.