From f1bf7616584400bd8eaaadb463d0c3d96ed4b308 Mon Sep 17 00:00:00 2001 From: chfw Date: Tue, 27 Nov 2018 07:53:45 +0000 Subject: [PATCH] :egg: :ferris_wheel: release 0.5.4 --- CHANGELOG.rst | 11 +++++++++++ changelog.yml | 6 ++++++ docs/source/conf.py | 2 +- pyexcel-ods.yml | 2 +- setup.py | 6 +++--- 5 files changed, 22 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 835ec48..6d621ca 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,17 @@ Change log ================================================================================ +0.5.4 - 27.11.2018 +-------------------------------------------------------------------------------- + +added +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `#30 `_, 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.3 - unreleased -------------------------------------------------------------------------------- diff --git a/changelog.yml b/changelog.yml index d8a8f1c..fc2e04f 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,6 +1,12 @@ name: pyexcel-ods organisation: pyexcel releases: +- changes: + - action: added + details: + - '`#30`, 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.' + date: 27.11.2018 + version: 0.5.4 - changes: - action: added details: diff --git a/docs/source/conf.py b/docs/source/conf.py index cc38149..5d14f4c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,7 +28,7 @@ copyright = u'2015-2018 Onni Software Ltd.' author = u'C.W.' # The short X.Y version -version = u'0.5.3' +version = u'0.5.4' # The full version, including alpha/beta/rc tags release = u'0.5.4' diff --git a/pyexcel-ods.yml b/pyexcel-ods.yml index c8201fd..95c101a 100644 --- a/pyexcel-ods.yml +++ b/pyexcel-ods.yml @@ -3,7 +3,7 @@ name: "pyexcel-ods" nick_name: ods version: 0.5.4 current_version: 0.5.4 -release: 0.5.3 +release: 0.5.4 file_type: ods dependencies: - pyexcel-io>=0.5.9 diff --git a/setup.py b/setup.py index 98d8564..02530fd 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ DESCRIPTION = ( 'A wrapper library to read, manipulate and write data in ods format' ) URL = 'https://github.com/pyexcel/pyexcel-ods' -DOWNLOAD_URL = '%s/archive/0.5.3.tar.gz' % URL +DOWNLOAD_URL = '%s/archive/0.5.4.tar.gz' % URL FILES = ['README.rst', 'CHANGELOG.rst'] KEYWORDS = [ 'python', @@ -48,8 +48,8 @@ EXTRAS_REQUIRE = { # 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-ods v0.5.3 ' + - "Find 0.5.3 in changelog for more details") +GS_COMMAND = ('gs pyexcel-ods v0.5.4 ' + + "Find 0.5.4 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = (