From 242dbd757a79749d40ee310c47fc51e3e0e3fa5f Mon Sep 17 00:00:00 2001 From: chfw Date: Wed, 6 Oct 2021 22:16:47 +0000 Subject: [PATCH] This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst --- CHANGELOG.rst | 7 +++++-- docs/source/conf.py | 4 ++-- setup.py | 8 ++++---- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 33a4bcd..205f54f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,13 +1,16 @@ Change log ================================================================================ -0.6.3 - 07.10.2021 +0.7.0 - 07.10.2021 -------------------------------------------------------------------------------- -**Updated** +**Removed** #. `#46 `_: remove the hard pin on xlrd version < 2.0 + +**Added** + #. `#47 `_: limit support to persist datetime.timedelta. see more details in doc diff --git a/docs/source/conf.py b/docs/source/conf.py index 17b9ba7..dc7ae98 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,9 +26,9 @@ project = 'pyexcel-xls' copyright = '2015-2021 Onni Software Ltd.' author = 'C.W.' # The short X.Y version -version = '0.6.3' +version = '0.7.0' # The full version, including alpha/beta/rc tags -release = '0.6.3' +release = '0.7.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 663c693..0763a62 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ except (ValueError, UnicodeError, locale.Error): NAME = "pyexcel-xls" AUTHOR = "C.W." -VERSION = "0.6.3" +VERSION = "0.7.0" EMAIL = "info@pyexcel.org" LICENSE = "New BSD" DESCRIPTION = ( @@ -40,7 +40,7 @@ DESCRIPTION = ( "reads xlsx and xlsm format" ) URL = "https://github.com/pyexcel/pyexcel-xls" -DOWNLOAD_URL = "%s/archive/0.6.3.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.7.0.tar.gz" % URL FILES = ["README.rst","CONTRIBUTORS.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -81,8 +81,8 @@ EXTRAS_REQUIRE = { PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable) HERE = os.path.abspath(os.path.dirname(__file__)) -GS_COMMAND = ("gease pyexcel-xls v0.6.3 " + - "Find 0.6.3 in changelog for more details") +GS_COMMAND = ("gease pyexcel-xls v0.7.0 " + + "Find 0.7.0 in changelog for more details") NO_GS_MESSAGE = ("Automatic github release is disabled. " + "Please install gease to enable it.") UPLOAD_FAILED_MSG = (