🥚 🎡 release 0.5.4

This commit is contained in:
chfw 2018-11-27 07:53:45 +00:00
parent f3b2ad0510
commit f1bf761658
5 changed files with 22 additions and 5 deletions

View File

@ -1,6 +1,17 @@
Change log
================================================================================
0.5.4 - 27.11.2018
--------------------------------------------------------------------------------
added
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#. `#30 <https://github.com/pyexcel/pyexcel-ods/issues/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
--------------------------------------------------------------------------------

View File

@ -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:

View File

@ -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'

View File

@ -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

View File

@ -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 = (