From 36fc5525f85fccbf370f6868973852a4fb8da0e9 Mon Sep 17 00:00:00 2001 From: "Fanani M. Ihsan" Date: Fri, 17 Jun 2016 14:18:29 +0700 Subject: [PATCH] minor fix --- docs/conf.py | 4 ++-- zk/__init__.py | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 59cc131..774ab06 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ author = u'Fanani M. Ihsan' # built documents. # # The short X.Y version. -version = u'0.2' +version = u'0.3' # The full version, including alpha/beta/rc tags. -release = u'0.2' +release = u'0.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/zk/__init__.py b/zk/__init__.py index fdcd189..b5e932d 100644 --- a/zk/__init__.py +++ b/zk/__init__.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- from base import ZK -__all__ = ['ZK'] \ No newline at end of file +VERSION = (0,3) + +__all__ = ['ZK']