Skip to content

Commit c119c1a

Browse files
authored
Merge pull request #54 from pyexcel/dev
🥚 🎡 release 0.5.9.1. fix #53,
2 parents 317e170 + 48f45f1 commit c119c1a

File tree

6 files changed

+27
-12
lines changed

6 files changed

+27
-12
lines changed

CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change log
22
================================================================================
33

4+
0.5.9.1 - 30.08.2018
5+
--------------------------------------------------------------------------------
6+
7+
updated
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. `#53 <https://github.com/pyexcel/pyexcel-io/issues/53>`_, upgrade lml
11+
dependency to at least 0.0.2
12+
413
0.5.9 - 23.08.2018
514
--------------------------------------------------------------------------------
615

changelog.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-io
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: updated
6+
details:
7+
- '`#53`, upgrade lml dependency to at least 0.0.2'
8+
date: 30.08.2018
9+
version: 0.5.9.1
410
- changes:
511
- action: added
612
details:

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
author = u'C.W.'
3030

3131
# The short X.Y version
32-
version = u'0.5.9'
32+
version = u'0.5.9.1'
3333
# The full version, including alpha/beta/rc tags
34-
release = u'0.5.9'
34+
release = u'0.5.9.1'
3535

3636

3737
# -- General configuration ---------------------------------------------------

pyexcel-io.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-io"
33
nick_name: io
4-
version: 0.5.9
5-
current_version: 0.5.9
6-
release: 0.5.9
4+
version: 0.5.9.1
5+
current_version: 0.5.9.1
6+
release: 0.5.9.1
77
dependencies:
88
- ordereddict;python_version<"2.7"
9-
- lml==0.0.1
9+
- lml>=0.0.2
1010
extra_dependencies:
1111
- xls:
1212
- pyexcel-xls>=0.5.0

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
ordereddict;python_version<"2.7"
2-
lml==0.0.1
2+
lml>=0.0.2

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111

1212
NAME = 'pyexcel-io'
1313
AUTHOR = 'C.W.'
14-
VERSION = '0.5.9'
14+
VERSION = '0.5.9.1'
1515
EMAIL = 'wangc_2011@hotmail.com'
1616
LICENSE = 'New BSD'
1717
DESCRIPTION = (
1818
'A python library to read and write structured data in csv, zipped csv' +
1919
'format and to/from databases'
2020
)
2121
URL = 'https://github.com/pyexcel/pyexcel-io'
22-
DOWNLOAD_URL = '%s/archive/0.5.9.tar.gz' % URL
22+
DOWNLOAD_URL = '%s/archive/0.5.9.1.tar.gz' % URL
2323
FILES = ['README.rst', 'CHANGELOG.rst']
2424
KEYWORDS = [
2525
'API',
@@ -47,7 +47,7 @@
4747
]
4848

4949
INSTALL_REQUIRES = [
50-
'lml==0.0.1',
50+
'lml>=0.0.2',
5151
]
5252
SETUP_COMMANDS = {}
5353

@@ -63,8 +63,8 @@
6363
# You do not need to read beyond this line
6464
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
6565
sys.executable)
66-
GS_COMMAND = ('gs pyexcel-io v0.5.9 ' +
67-
"Find 0.5.9 in changelog for more details")
66+
GS_COMMAND = ('gs pyexcel-io v0.5.9.1 ' +
67+
"Find 0.5.9.1 in changelog for more details")
6868
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
6969
'Please install gease to enable it.')
7070
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)