Skip to content

Commit f1bf761

Browse files
committed
🥚 🎡 release 0.5.4
1 parent f3b2ad0 commit f1bf761

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Change log
22
================================================================================
33

4+
0.5.4 - 27.11.2018
5+
--------------------------------------------------------------------------------
6+
7+
added
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. `#30 <https://github.com/pyexcel/pyexcel-ods/issues/30>`_, long type will not
11+
be written in ods. please use string type. And if the integer is equal or
12+
greater than 10 to the power of 16, it will not be written either in ods. In
13+
both situation, IntegerPrecisionLossError will be raised.
14+
415
0.5.3 - unreleased
516
--------------------------------------------------------------------------------
617

changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-ods
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: added
6+
details:
7+
- '`#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.'
8+
date: 27.11.2018
9+
version: 0.5.4
410
- changes:
511
- action: added
612
details:

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
author = u'C.W.'
2929

3030
# The short X.Y version
31-
version = u'0.5.3'
31+
version = u'0.5.4'
3232
# The full version, including alpha/beta/rc tags
3333
release = u'0.5.4'
3434

pyexcel-ods.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "pyexcel-ods"
33
nick_name: ods
44
version: 0.5.4
55
current_version: 0.5.4
6-
release: 0.5.3
6+
release: 0.5.4
77
file_type: ods
88
dependencies:
99
- pyexcel-io>=0.5.9

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'A wrapper library to read, manipulate and write data in ods format'
1818
)
1919
URL = 'https://github.com/pyexcel/pyexcel-ods'
20-
DOWNLOAD_URL = '%s/archive/0.5.3.tar.gz' % URL
20+
DOWNLOAD_URL = '%s/archive/0.5.4.tar.gz' % URL
2121
FILES = ['README.rst', 'CHANGELOG.rst']
2222
KEYWORDS = [
2323
'python',
@@ -48,8 +48,8 @@
4848
# You do not need to read beyond this line
4949
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5050
sys.executable)
51-
GS_COMMAND = ('gs pyexcel-ods v0.5.3 ' +
52-
"Find 0.5.3 in changelog for more details")
51+
GS_COMMAND = ('gs pyexcel-ods v0.5.4 ' +
52+
"Find 0.5.4 in changelog for more details")
5353
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
5454
'Please install gease to enable it.')
5555
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)