diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cd42919..50a44c7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Change log ================================================================================ -0.6.0 - 7.10.2020 +0.6.1 - 7.10.2020 -------------------------------------------------------------------------------- **removed** diff --git a/changelog.yml b/changelog.yml index f924250..0e0039b 100644 --- a/changelog.yml +++ b/changelog.yml @@ -17,7 +17,7 @@ releases: - action: added details: - "`#86`: allow trailing options, get_data(...keep_trailing_empty_cells=True)." - version: 0.6.0 + version: 0.6.1 date: 7.10.2020 - changes: - action: updated diff --git a/docs/source/conf.py b/docs/source/conf.py index 9588316..a30ee98 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,9 +26,9 @@ project = 'pyexcel-io' copyright = '2015-2020 Onni Software Ltd.' author = 'chfw' # The short X.Y version -version = '0.6.0' +version = '0.6.1' # The full version, including alpha/beta/rc tags -release = '0.6.0' +release = '0.6.1' # -- General configuration --------------------------------------------------- diff --git a/pyexcel-io.yml b/pyexcel-io.yml index fea0582..8c837d9 100644 --- a/pyexcel-io.yml +++ b/pyexcel-io.yml @@ -2,9 +2,9 @@ overrides: "pyexcel.yaml" project: "pyexcel-io" name: pyexcel-io nick_name: io -version: 0.6.0 -current_version: 0.6.0 -release: 0.6.0 +version: 0.6.1 +current_version: 0.6.1 +release: 0.6.1 copyright_year: 2015-2020 moban_command: false is_on_conda: true diff --git a/setup.py b/setup.py index 88c0275..0b9a547 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ except (ValueError, UnicodeError, locale.Error): NAME = "pyexcel-io" AUTHOR = "chfw" -VERSION = "0.6.0" +VERSION = "0.6.1" EMAIL = "info@pyexcel.org" LICENSE = "New BSD" DESCRIPTION = ( @@ -40,7 +40,7 @@ DESCRIPTION = ( "format and to/from databases" ) URL = "https://github.com/pyexcel/pyexcel-io" -DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL FILES = ["README.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -85,8 +85,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-io v0.6.0 " + - "Find 0.6.0 in changelog for more details") +GS_COMMAND = ("gs pyexcel-io v0.6.1 " + + "Find 0.6.1 in changelog for more details") NO_GS_MESSAGE = ("Automatic github release is disabled. " + "Please install gease to enable it.") UPLOAD_FAILED_MSG = (