diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9f16100..fc8392a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,20 @@ Change log ================================================================================ +0.6.0 - 8.10.2020 +-------------------------------------------------------------------------------- + +**Updated** + +#. New style xlsx plugins, promoted by pyexcel-io v0.6.0. + +0.5.9 - 29.08.2020 +-------------------------------------------------------------------------------- + +**Added** + +#. `#35 `_, include tests + 0.5.8 - 22.08.2018 -------------------------------------------------------------------------------- diff --git a/LICENSE b/LICENSE index 3225ede..9c01abd 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-xls' 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/changelog.yml b/changelog.yml index f25f270..27f4d30 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,6 +1,18 @@ name: pyexcel-xls organisation: pyexcel releases: +- changes: + - action: Updated + details: + - 'New style xlsx plugins, promoted by pyexcel-io v0.6.0.' + date: 8.10.2020 + version: 0.6.0 +- changes: + - action: Added + details: + - "`#35`, include tests" + date: 29.08.2020 + version: 0.5.9 - changes: - action: Added details: diff --git a/docs/source/conf.py b/docs/source/conf.py index 7776da0..d9f5d9d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,7 +28,7 @@ author = 'chfw' # The short X.Y version version = '0.6.0' # The full version, including alpha/beta/rc tags -release = '0.5.8' +release = '0.6.0' # -- General configuration --------------------------------------------------- diff --git a/pyexcel-xls.yml b/pyexcel-xls.yml index 7a4b955..484a09a 100644 --- a/pyexcel-xls.yml +++ b/pyexcel-xls.yml @@ -3,7 +3,7 @@ name: "pyexcel-xls" nick_name: xls version: 0.6.0 current_version: 0.6.0 -release: 0.5.8 +release: 0.6.0 file_type: xls is_on_conda: true dependencies: @@ -13,4 +13,4 @@ dependencies: test_dependencies: - pyexcel description: A wrapper library to read, manipulate and write data in xls format. It reads xlsx and xlsm format -moban_command: false \ No newline at end of file +moban_command: false diff --git a/setup.py b/setup.py index 3aee597..d8cfed2 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ DESCRIPTION = ( "reads xlsx and xlsm format" ) URL = "https://github.com/pyexcel/pyexcel-xls" -DOWNLOAD_URL = "%s/archive/0.5.8.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL FILES = ["README.rst","CONTRIBUTORS.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -78,8 +78,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-xls v0.5.8 " + - "Find 0.5.8 in changelog for more details") +GS_COMMAND = ("gs pyexcel-xls 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 = (