From ebb9c2f8f286a4e1d55ae60ed84d097ba0346f5d Mon Sep 17 00:00:00 2001 From: chfw Date: Thu, 8 Oct 2020 22:46:46 +0100 Subject: [PATCH] :egg: :ferris_wheel: release 0.6.0 --- CHANGELOG.rst | 4 ++-- LICENSE | 2 +- README.rst | 5 +++++ changelog.yml | 4 ++-- docs/source/conf.py | 2 +- pyexcel-ods.yml | 4 ++-- requirements.txt | 2 +- setup.py | 8 ++++---- 8 files changed, 18 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fc86868..c2249ed 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,12 +1,12 @@ Change log ================================================================================ -0.6.0 - 2020 +0.6.0 - 9.10.2020 -------------------------------------------------------------------------------- **added** -#. new style reader and writer plugins. works with pyexcel-io v0.6.0 +#. new style reader and writer plugins. works with pyexcel-io v0.6.2 0.5.6 - 19.03.2019 -------------------------------------------------------------------------------- diff --git a/LICENSE b/LICENSE index dd9cb68..a0a4488 100644 --- a/LICENSE +++ b/LICENSE @@ -13,7 +13,7 @@ that the following conditions are met: and/or other materials provided with the distribution. * Neither the name of 'pyexcel-ods' nor the names of the contributors - may be used to endorse or promote products derived from this software + may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND diff --git a/README.rst b/README.rst index d7cb182..abbced9 100644 --- a/README.rst +++ b/README.rst @@ -25,6 +25,11 @@ pyexcel-ods - Let you focus on data, instead of ods format .. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg :target: https://gitter.im/pyexcel/Lobby +.. 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 + :target: https://moban.readthedocs.io/en/latest/#at-scale-continous-templating-for-open-source-projects + +.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square + :target: https://github.com/psf/black **pyexcel-ods** is a tiny wrapper library to read, manipulate and write data in ods format using python 2.6 and python 2.7. You are likely to use it with diff --git a/changelog.yml b/changelog.yml index 8bb7c9d..1692c01 100644 --- a/changelog.yml +++ b/changelog.yml @@ -4,8 +4,8 @@ releases: - changes: - action: added details: - - 'new style reader and writer plugins. works with pyexcel-io v0.6.0' - date: 2020 + - 'new style reader and writer plugins. works with pyexcel-io v0.6.2' + date: 9.10.2020 version: 0.6.0 - changes: - action: added diff --git a/docs/source/conf.py b/docs/source/conf.py index 664ab82..5a459b0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ author = 'chfw' # The short X.Y version version = '0.6.0' # The full version, including alpha/beta/rc tags -release = '0.5.6' +release = '0.6.0' # -- General configuration --------------------------------------------------- diff --git a/pyexcel-ods.yml b/pyexcel-ods.yml index 94a0235..5eefaa6 100644 --- a/pyexcel-ods.yml +++ b/pyexcel-ods.yml @@ -3,11 +3,11 @@ name: "pyexcel-ods" nick_name: ods version: 0.6.0 current_version: 0.6.0 -release: 0.5.6 +release: 0.6.0 copyright_year: 2015-2020 file_type: ods dependencies: - - pyexcel-io>=0.5.16 + - pyexcel-io>=0.6.2 - odfpy>=1.3.5 test_dependencies: - pyexcel diff --git a/requirements.txt b/requirements.txt index a6599ba..10c1e1d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -pyexcel-io>=0.5.16 +pyexcel-io>=0.6.2 odfpy>=1.3.5 diff --git a/setup.py b/setup.py index d2f1740..e4a3e42 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ DESCRIPTION = ( "A wrapper library to read, manipulate and write data in ods format" ) URL = "https://github.com/pyexcel/pyexcel-ods" -DOWNLOAD_URL = "%s/archive/0.5.6.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL FILES = ["README.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -60,7 +60,7 @@ CLASSIFIERS = [ PYTHON_REQUIRES = ">=3.6" INSTALL_REQUIRES = [ - "pyexcel-io>=0.5.16", + "pyexcel-io>=0.6.2", "odfpy>=1.3.5", ] SETUP_COMMANDS = {} @@ -70,8 +70,8 @@ EXTRAS_REQUIRE = { } # You do not need to read beyond this line PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable) -GS_COMMAND = ("gs pyexcel-ods v0.5.6 " + - "Find 0.5.6 in changelog for more details") +GS_COMMAND = ("gs pyexcel-ods v0.6.0 " + + "Find 0.6.0 in changelog for more details") NO_GS_MESSAGE = ("Automatic github release is disabled. " + "Please install gease to enable it.") UPLOAD_FAILED_MSG = (