Skip to content

Commit cb5bc78

Browse files
committed
🥚 🎡 release 0.5.14
2 parents 0364158 + cd4e647 commit cb5bc78

File tree

7 files changed

+37
-15
lines changed

7 files changed

+37
-15
lines changed

.moban.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
requires:
2+
- type: git
3+
url: https://github.com/moremoban/pypi-mobans
4+
submodule: true
5+
- https://github.com/pyexcel/pyexcel-mobans
16
configuration:
2-
configuration_dir: "commons/config"
7+
configuration_dir: "pyexcel-mobans:config"
38
template_dir:
4-
- "commons/templates"
5-
- "setupmobans/templates"
9+
- "pyexcel-mobans:templates"
10+
- "pypi-mobans:templates"
611
- ".moban.d"
712
configuration: pyexcel-io.yml
813
targets:
@@ -12,7 +17,6 @@ targets:
1217
- requirements.txt: requirements.txt.jj2
1318
- "tests/requirements.txt": "tests/requirements.txt"
1419
- LICENSE: NEW_BSD_LICENSE.jj2
15-
- MANIFEST.in: MANIFEST.in.jj2
1620
- test.sh: test.script.jj2
1721
- test.bat: test.script.jj2
1822
- README.rst: README.rst

CHANGELOG.rst

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Change log
22
================================================================================
33

4-
0.5.13 - 21.02.2019
4+
0.5.14 - 21.02.2019
55
--------------------------------------------------------------------------------
66

77
updated
@@ -10,6 +10,15 @@ updated
1010
#. `#65 <https://github.com/pyexcel/pyexcel-io/issues/65>`_: add
1111
tests/__init__.py because python2.7 setup.py test needs it
1212

13+
0.5.13 - 12.02.2019
14+
--------------------------------------------------------------------------------
15+
16+
updated
17+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18+
19+
#. `#63 <https://github.com/pyexcel/pyexcel-io/issues/63>`_: Version 0.5.12
20+
prevents xslx and ods plugin from being loaded
21+
1322
0.5.12 - 9.02.2019
1423
--------------------------------------------------------------------------------
1524

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ include LICENSE
33
include CHANGELOG.rst
44
recursive-include tests *
55
recursive-include docs *
6+
include docs/source/*
7+
include Makefile
8+
include test.sh

changelog.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ releases:
55
- action: updated
66
details:
77
- '`#65`: add tests/__init__.py because python2.7 setup.py test needs it'
8-
version: 0.5.13
8+
version: 0.5.14
99
date: 21.02.2019
10+
- changes:
11+
- action: updated
12+
details:
13+
- '`#63`: Version 0.5.12 prevents xslx and ods plugin from being loaded'
14+
version: 0.5.13
15+
date: 12.02.2019
1016
- changes:
1117
- action: updated
1218
details:

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
copyright = 'copyright 2015-2019 Onni Software Ltd.'
2727
author = 'Onni Software Ltd.'
2828
# The short X.Y version
29-
version = '0.5.13'
29+
version = '0.5.14'
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.5.13'
31+
release = '0.5.14'
3232

3333
# -- General configuration ---------------------------------------------------
3434

pyexcel-io.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ overrides: "pyexcel.yaml"
22
project: "pyexcel-io"
33
name: pyexcel-io
44
nick_name: io
5-
version: 0.5.13
6-
current_version: 0.5.13
5+
version: 0.5.14
6+
current_version: 0.5.14
77
copyright_year: 2015-2019
8-
release: 0.5.13
8+
release: 0.5.14
99
dependencies:
1010
- ordereddict;python_version<"2.7"
1111
- lml>=0.0.4

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929

3030
NAME = 'pyexcel-io'
3131
AUTHOR = 'C.W.'
32-
VERSION = '0.5.13'
32+
VERSION = '0.5.14'
3333
3434
LICENSE = 'New BSD'
3535
DESCRIPTION = (
3636
'A python library to read and write structured data in csv, zipped csv' +
3737
'format and to/from databases'
3838
)
3939
URL = 'https://github.com/pyexcel/pyexcel-io'
40-
DOWNLOAD_URL = '%s/archive/0.5.13.tar.gz' % URL
40+
DOWNLOAD_URL = '%s/archive/0.5.14.tar.gz' % URL
4141
FILES = ['README.rst', 'CHANGELOG.rst']
4242
KEYWORDS = [
4343
'python',
@@ -81,8 +81,8 @@
8181
# You do not need to read beyond this line
8282
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
8383
sys.executable)
84-
GS_COMMAND = ('gs pyexcel-io v0.5.13 ' +
85-
"Find 0.5.13 in changelog for more details")
84+
GS_COMMAND = ('gs pyexcel-io v0.5.14 ' +
85+
"Find 0.5.14 in changelog for more details")
8686
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
8787
'Please install gease to enable it.')
8888
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)