diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 22c0b69..f6f2081 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,18 @@ Change log ================================================================================ +0.5.3 - 27.11.2018 +-------------------------------------------------------------------------------- + +added +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `#57 `_, long type will not + be written in ods. please use string type. And if the integer is equal or + greater than 10 to the power of 16, it will not be written either in ods. In + both situation, IntegerPrecisionLossError will be raised. + + 0.5.2 - 23.10.2017 -------------------------------------------------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index a085a0f..8cfa5f0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,7 +28,7 @@ author = u'C.W.' # The short X.Y version -version = u'0.5.2' +version = u'0.5.3' # The full version, including alpha/beta/rc tags release = u'0.5.3' diff --git a/pyexcel-ods3.yml b/pyexcel-ods3.yml index 5c39525..e7fc52b 100644 --- a/pyexcel-ods3.yml +++ b/pyexcel-ods3.yml @@ -3,7 +3,7 @@ name: "pyexcel-ods3" nick_name: ods3 version: 0.5.3 current_version: 0.5.3 -release: 0.5.2 +release: 0.5.3 file_type: ods dependencies: - pyexcel-io>=0.5.10 diff --git a/setup.py b/setup.py index fe3e286..f889af7 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ 'A wrapper library to read, manipulate and write data in ods format' ) URL = 'https://github.com/pyexcel/pyexcel-ods3' -DOWNLOAD_URL = '%s/archive/0.5.2.tar.gz' % URL +DOWNLOAD_URL = '%s/archive/0.5.3.tar.gz' % URL FILES = ['README.rst', 'CHANGELOG.rst'] KEYWORDS = [ 'python', @@ -55,8 +55,8 @@ # You do not need to read beyond this line PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format( sys.executable) -GS_COMMAND = ('gs pyexcel-ods3 v0.5.2 ' + - "Find 0.5.2 in changelog for more details") +GS_COMMAND = ('gs pyexcel-ods3 v0.5.3 ' + + "Find 0.5.3 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = (