Skip to content

Commit 9bd4e85

Browse files
committed
🥚 🎡 release 0.6.0
1 parent 20d438c commit 9bd4e85

File tree

8 files changed

+18
-13
lines changed

8 files changed

+18
-13
lines changed

Diff for: CHANGELOG.rst

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

4-
0.6.0 - tbd
4+
0.6.0 - 9.10.2020
55
--------------------------------------------------------------------------------
66

77
**Updated**

Diff for: LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2019 by Onni Software Ltd. and its contributors
1+
Copyright (c) 2015-2020 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well
@@ -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-odsr' 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

Diff for: README.rst

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ pyexcel-odsr - Let you focus on data, instead of ods format
2525
.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg
2626
:target: https://gitter.im/pyexcel/Lobby
2727

28+
.. 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
29+
:target: https://moban.readthedocs.io/en/latest/#at-scale-continous-templating-for-open-source-projects
30+
31+
.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square
32+
:target: https://github.com/psf/black
2833

2934
**pyexcel-odsr** is a specialized ods reader based on tailored ods reader from
3035
`messytables <https://github.com/okfn/messytables>`_.

Diff for: changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ releases:
55
- action: Updated
66
details:
77
- 'New style xlsx plugins, promoted by pyexcel-io v0.6.0.'
8-
date: tbd
8+
date: 9.10.2020
99
version: 0.6.0
1010
- changes:
1111
- action: updated

Diff for: pyexcel-odsr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: "pyexcel-odsr"
33
nick_name: odsr
44
version: 0.6.0
55
current_version: 0.6.0
6-
release: 0.5.2
6+
release: 0.6.0
77
file_type: ods
88
dependencies:
9-
- pyexcel-io>=0.5.3
9+
- pyexcel-io>=0.6.2
1010
- lxml>=3.2
1111
test_dependencies:
1212
- pyexcel

Diff for: pyexcel_odsr/_version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Auto generated by moban
2-
__version__ = "0.6.0"
3-
__author__ = "chfw"
2+
__version__ = '0.6.0'
3+
__author__ = 'chfw'

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyexcel-io>=0.5.3
1+
pyexcel-io>=0.6.2
22
lxml>=3.2

Diff for: setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"formats using tailored messytables."
3838
)
3939
URL = "https://github.com/pyexcel/pyexcel-odsr"
40-
DOWNLOAD_URL = "%s/archive/0.5.2.tar.gz" % URL
40+
DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL
4141
FILES = ["README.rst", 'CONTRIBUTORS.rst', "CHANGELOG.rst"]
4242
KEYWORDS = [
4343
"python",
@@ -63,7 +63,7 @@
6363

6464

6565
INSTALL_REQUIRES = [
66-
"pyexcel-io>=0.5.3",
66+
"pyexcel-io>=0.6.2",
6767
"lxml>=3.2",
6868
]
6969
SETUP_COMMANDS = {}
@@ -73,8 +73,8 @@
7373
}
7474
# You do not need to read beyond this line
7575
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
76-
GS_COMMAND = ("gs pyexcel-odsr v0.5.2 " +
77-
"Find 0.5.2 in changelog for more details")
76+
GS_COMMAND = ("gs pyexcel-odsr v0.6.0 " +
77+
"Find 0.6.0 in changelog for more details")
7878
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7979
"Please install gease to enable it.")
8080
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)