diff --git a/setup.py b/setup.py index a77fcfe..52a3e75 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ descr = "A declarative API for composing spreadsheets from python" name = 'xlcompose' url = 'https://github.com/jbogaardt/xlcompose' -version='0.2.2' # Put this in __init__.py +version='0.2.3' # Put this in __init__.py data_path = '' setup( diff --git a/xlcompose/__init__.py b/xlcompose/__init__.py index 382a6ba..b28b125 100644 --- a/xlcompose/__init__.py +++ b/xlcompose/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.2.2' +__version__ = '0.2.3' from xlcompose.core import ( Tabs, Sheet, Row, Column, DataFrame, Series, CSpacer, RSpacer, Title, Image, VSpacer, HSpacer)