release 0.5.1 🥚 🎡

This commit is contained in:
chfw 2017-09-02 19:27:27 +01:00
parent 4dc2627085
commit e661e58a7d
4 changed files with 21 additions and 13 deletions

View File

@ -1,6 +1,14 @@
Change log
================================================================================
0.5.1 - 02.09.2017
--------------------------------------------------------------------------------
Fixed
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. `pyexcel-ods issue 25<https://github.com/pyexcel/pyexcel-ods/issues/25>`_,
Unwanted dependency on pyexcel.
0.5.0 - 30.08.2017
--------------------------------------------------------------------------------

View File

@ -22,8 +22,8 @@ master_doc = 'index'
project = u'pyexcel-io'
copyright = u'2015-2017 Onni Software Ltd.'
version = '0.5.0'
release = '0.5.0'
version = '0.5.1'
release = '0.5.1'
exclude_patterns = []
pygments_style = 'sphinx'
html_theme = 'default'

View File

@ -1,19 +1,19 @@
overrides: "pyexcel.yaml"
name: "pyexcel-io"
nick_name: io
version: 0.5.0
current_version: 0.5.0
release: 0.5.0
version: 0.5.1
current_version: 0.5.1
release: 0.5.1
dependencies:
- ordereddict;python_version<"2.7"
- lml==0.0.1
extra_dependencies:
- xls:
- pyexcel-xls>=0.4.0
- pyexcel-xls>=0.5.0
- xlsx:
- pyexcel-xlsx>=0.4.0
- pyexcel-xlsx>=0.5.0
- ods:
- pyexcel-ods3>=0.4.0
- pyexcel-ods3>=0.5.0
keywords:
- API
- tsv

View File

@ -10,7 +10,7 @@ PY26 = PY2 and sys.version_info[1] < 7
NAME = 'pyexcel-io'
AUTHOR = 'C.W.'
VERSION = '0.5.0'
VERSION = '0.5.1'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
@ -19,7 +19,7 @@ DESCRIPTION = (
''
)
URL = 'https://github.com/pyexcel/pyexcel-io'
DOWNLOAD_URL = '%s/archive/0.5.0.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.1.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'API',
@ -57,9 +57,9 @@ if PY26:
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
EXTRAS_REQUIRE = {
'xls': ['pyexcel-xls>=0.4.0'],
'xlsx': ['pyexcel-xlsx>=0.4.0'],
'ods': ['pyexcel-ods3>=0.4.0'],
'xls': ['pyexcel-xls>=0.5.0'],
'xlsx': ['pyexcel-xlsx>=0.5.0'],
'ods': ['pyexcel-ods3>=0.5.0'],
}