Skip to content

Commit b942935

Browse files
committed
💄 kick start 0.6.3
1 parent 5afbe74 commit b942935

File tree

7 files changed

+22
-8
lines changed

7 files changed

+22
-8
lines changed

CHANGELOG.rst

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

4+
0.6.2 - 7.10.2020
5+
--------------------------------------------------------------------------------
6+
7+
**updated**
8+
9+
#. `#94 <https://github.com/pyexcel/pyexcel-io/issues/94>`_: keep backward
10+
compatibility for pyexcel-xls 0.4.1
11+
412
0.6.1 - 7.10.2020
513
--------------------------------------------------------------------------------
614

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ that the following conditions are met:
1313
and/or other materials provided with the distribution.
1414

1515
* Neither the name of 'pyexcel-io' nor the names of the contributors
16-
may be used to endorse or promote products derived from this software
16+
may not be used to endorse or promote products derived from this software
1717
without specific prior written permission.
1818

1919
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ pyexcel-io - Let you focus on data, instead of file formats
2929
.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg
3030
:target: https://gitter.im/pyexcel/Lobby
3131

32+
.. image:: https://img.shields.io/static/v1?label=continuous%20templating&message=%E6%A8%A1%E7%89%88%E6%9B%B4%E6%96%B0&color=blue&style=flat-square
33+
:target: https://moban.readthedocs.io/en/latest/#at-scale-continous-templating-for-open-source-projects
34+
35+
.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square
36+
:target: https://github.com/psf/black
3237
.. image:: https://readthedocs.org/projects/pyexcel-io/badge/?version=latest
3338
:target: http://pyexcel-io.readthedocs.org/en/latest/
3439

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The short X.Y version
2929
version = '0.6.2'
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.6.2'
31+
release = '0.6.3'
3232

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

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
:Source code: http://github.com/pyexcel/pyexcel-io.git
1111
:Issues: http://github.com/pyexcel/pyexcel-io/issues
1212
:License: New BSD License
13+
:Development: |release|
1314
:Released: |version|
1415
:Generated: |today|
1516

pyexcel-io.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ project: "pyexcel-io"
33
name: pyexcel-io
44
nick_name: io
55
version: 0.6.2
6-
current_version: 0.6.2
7-
release: 0.6.2
6+
current_version: 0.6.3
7+
release: 0.6.3
88
copyright_year: 2015-2020
99
moban_command: false
1010
is_on_conda: true

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232

3333
NAME = "pyexcel-io"
3434
AUTHOR = "chfw"
35-
VERSION = "0.6.2"
35+
VERSION = "0.6.3"
3636
EMAIL = "info@pyexcel.org"
3737
LICENSE = "New BSD"
3838
DESCRIPTION = (
3939
"A python library to read and write structured data in csv, zipped csv" +
4040
"format and to/from databases"
4141
)
4242
URL = "https://github.com/pyexcel/pyexcel-io"
43-
DOWNLOAD_URL = "%s/archive/0.6.2.tar.gz" % URL
43+
DOWNLOAD_URL = "%s/archive/0.6.3.tar.gz" % URL
4444
FILES = ["README.rst", "CHANGELOG.rst"]
4545
KEYWORDS = [
4646
"python",
@@ -85,8 +85,8 @@
8585
}
8686
# You do not need to read beyond this line
8787
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
88-
GS_COMMAND = ("gs pyexcel-io v0.6.2 " +
89-
"Find 0.6.2 in changelog for more details")
88+
GS_COMMAND = ("gs pyexcel-io v0.6.3 " +
89+
"Find 0.6.3 in changelog for more details")
9090
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
9191
"Please install gease to enable it.")
9292
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)