8000 release 0.6.5 by chfw · Pull Request #110 · pyexcel/pyexcel-io · GitHub
[go: up one dir, main page]

Skip to content

release 0.6.5 #110

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Oct 8, 2021
Prev Previous commit
Next Next commit
📚 update next version
  • Loading branch information
chfw committed Dec 5, 2020
commit 67c111f0761775b3bba914387007833a1430e405
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
copyright = '2015-2020 Onni Software Ltd.'
author = 'C.W.'
# The short X.Y version
version = '0.6.5'
version = '0.6.4'
# The full version, including alpha/beta/rc tags
release = '0.6.4'
release = '0.6.5'

# -- General configuration ---------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions pyexcel-io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ overrides: "pyexcel.yaml"
project: "pyexcel-io"
name: pyexcel-io
nick_name: io
version: 0.6.5
current_version: 0.6.4
release: 0.6.4
version: 0.6.4
current_version: 0.6.5
release: 0.6.5
copyright_year: 2015-2020
moban_command: false
is_on_conda: true
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@

NAME = "pyexcel-io"
AUTHOR = "C.W."
VERSION = "0.6.4"
VERSION = "0.6.5"
EMAIL = "info@pyexcel.org"
LICENSE = "New BSD"
DESCRIPTION = (
"A python library to read and write structured data in csv, zipped csv" +
"format and to/from databases"
)
URL = "https://github.com/pyexcel/pyexcel-io"
DOWNLOAD_URL = "%s/archive/0.6.4.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.6.5.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand Down Expand Up @@ -87,8 +87,8 @@
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-io v0.6.4 " +
"Find 0.6.4 in changelog for more details")
GS_COMMAND = ("gease pyexcel-io v0.6.5 " +
"Find 0.6.5 in changelog for more details")
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
"Please install gease to enable it.")
UPLOAD_FAILED_MSG = (
Expand Down
0