Skip to content

Commit

Permalink
release 0.5.1 🥚 🎡
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Sep 2, 2017
1 parent 4dc2627 commit e661e58
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
--------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

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'
Expand Down
12 changes: 6 additions & 6 deletions pyexcel_io.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

NAME = 'pyexcel-io'
AUTHOR = 'C.W.'
VERSION = '0.5.0'
VERSION = '0.5.1'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
Expand All @@ -19,7 +19,7 @@
''
)
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',
Expand Down Expand Up @@ -57,9 +57,9 @@

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'],
}


Expand Down

0 comments on commit e661e58

Please sign in to comment.