Skip to content

Commit ebb9c2f

Browse files
committed
🥚 🎡 release 0.6.0
1 parent ca67cc9 commit ebb9c2f

File tree

8 files changed

+18
-13
lines changed

8 files changed

+18
-13
lines changed

CHANGELOG.rst

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

4-
0.6.0 - 2020
4+
0.6.0 - 9.10.2020
55
--------------------------------------------------------------------------------
66

77
**added**
88

9-
#. new style reader and writer plugins. works with pyexcel-io v0.6.0
9+
#. new style reader and writer plugins. works with pyexcel-io v0.6.2
1010

1111
0.5.6 - 19.03.2019
1212
--------------------------------------------------------------------------------

LICENSE

+1-1
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-ods' 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

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ pyexcel-ods - 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-ods** is a tiny wrapper library to read, manipulate and write data in
3035
ods format using python 2.6 and python 2.7. You are likely to use it with

changelog.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ releases:
44
- changes:
55
- action: added
66
details:
7-
- 'new style reader and writer plugins. works with pyexcel-io v0.6.0'
8-
date: 2020
7+
- 'new style reader and writer plugins. works with pyexcel-io v0.6.2'
8+
date: 9.10.2020
99
version: 0.6.0
1010
- changes:
1111
- action: added

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# The short X.Y version
2828
version = '0.6.0'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.5.6'
30+
release = '0.6.0'
3131

3232
# -- General configuration ---------------------------------------------------
3333

pyexcel-ods.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: "pyexcel-ods"
33
nick_name: ods
44
version: 0.6.0
55
current_version: 0.6.0
6-
release: 0.5.6
6+
release: 0.6.0
77
copyright_year: 2015-2020
88
file_type: ods
99
dependencies:
10-
- pyexcel-io>=0.5.16
10+
- pyexcel-io>=0.6.2
1111
- odfpy>=1.3.5
1212
test_dependencies:
1313
- pyexcel

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyexcel-io>=0.5.16
1+
pyexcel-io>=0.6.2
22
odfpy>=1.3.5

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"A wrapper library to read, manipulate and write data in ods format"
3737
)
3838
URL = "https://github.com/pyexcel/pyexcel-ods"
39-
DOWNLOAD_URL = "%s/archive/0.5.6.tar.gz" % URL
39+
DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL
4040
FILES = ["README.rst", "CHANGELOG.rst"]
4141
KEYWORDS = [
4242
"python",
@@ -60,7 +60,7 @@
6060
PYTHON_REQUIRES = ">=3.6"
6161

6262
INSTALL_REQUIRES = [
63-
"pyexcel-io>=0.5.16",
63+
"pyexcel-io>=0.6.2",
6464
"odfpy>=1.3.5",
6565
]
6666
SETUP_COMMANDS = {}
@@ -70,8 +70,8 @@
7070
}
7171
# You do not need to read beyond this line
7272
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
73-
GS_COMMAND = ("gs pyexcel-ods v0.5.6 " +
74-
"Find 0.5.6 in changelog for more details")
73+
GS_COMMAND = ("gs pyexcel-ods v0.6.0 " +
74+
"Find 0.6.0 in changelog for more details")
7575
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7676
"Please install gease to enable it.")
7777
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)