Skip to content

🥚 🎡 release 0.5.9.1. fix #53, #54

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 1 commit into from
Aug 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change log
================================================================================

0.5.9.1 - 30.08.2018
--------------------------------------------------------------------------------

updated
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#. `#53 <https://github.com/pyexcel/pyexcel-io/issues/53>`_, upgrade lml
dependency to at least 0.0.2

0.5.9 - 23.08.2018
--------------------------------------------------------------------------------

Expand Down
6 changes: 6 additions & 0 deletions changelog.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: pyexcel-io
organisation: pyexcel
releases:
- changes:
- action: updated
details:
- '`#53`, upgrade lml dependency to at least 0.0.2'
date: 30.08.2018
version: 0.5.9.1
- changes:
- action: added
details:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
author = u'C.W.'

# The short X.Y version
version = u'0.5.9'
version = u'0.5.9.1'
# The full version, including alpha/beta/rc tags
release = u'0.5.9'
release = u'0.5.9.1'


# -- General configuration ---------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions pyexcel-io.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
overrides: "pyexcel.yaml"
name: "pyexcel-io"
nick_name: io
version: 0.5.9
current_version: 0.5.9
release: 0.5.9
version: 0.5.9.1
current_version: 0.5.9.1
release: 0.5.9.1
dependencies:
- ordereddict;python_version<"2.7"
- lml==0.0.1
- lml>=0.0.2
extra_dependencies:
- xls:
- pyexcel-xls>=0.5.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ordereddict;python_version<"2.7"
lml==0.0.1
lml>=0.0.2
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@

NAME = 'pyexcel-io'
AUTHOR = 'C.W.'
VERSION = '0.5.9'
VERSION = '0.5.9.1'
EMAIL = 'wangc_2011@hotmail.com'
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.5.9.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.9.1.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'API',
Expand Down Expand Up @@ -47,7 +47,7 @@
]

INSTALL_REQUIRES = [
'lml==0.0.1',
'lml>=0.0.2',
]
SETUP_COMMANDS = {}

Expand All @@ -63,8 +63,8 @@
# 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.5.9 ' +
"Find 0.5.9 in changelog for more details")
GS_COMMAND = ('gs pyexcel-io v0.5.9.1 ' +
"Find 0.5.9.1 in changelog for more details")
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
'Please install gease to enable it.')
UPLOAD_FAILED_MSG = (
Expand Down