Skip to content

Commit dc73db5

Browse files
committed
release 0.5.0 🥚 🎡
1 parent 2c5bc4a commit dc73db5

File tree

6 files changed

+26
-11
lines changed

6 files changed

+26
-11
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Change log
22
===========
33

4+
0.5.0 - 30.08.2017
5+
--------------------------------------------------------------------------------
6+
7+
Updated
8+
********************************************************************************
9+
10+
#. put dependency on pyexcel-io 0.5.0, which uses cStringIO instead of StringIO.
11+
Hence, there will be performance boost in handling files in memory.
12+
#. version jumped because it will be easy to see pyexcel-htmlr depends on
13+
pyexcel-io v0.5.0
14+
15+
Relocated
16+
********************************************************************************
17+
18+
#. type detection code is being relocated into pyexcel-io
19+
420
0.0.1 - 26-07-2017
521
---------------------------
622

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
project = u'pyexcel-htmlr'
2222
copyright = u'2015-2017 Onni Software Ltd.'
23-
version = '0.0.1'
24-
release = '0.0.2'
23+
version = '0.5.0'
24+
release = '0.5.0'
2525
exclude_patterns = []
2626
pygments_style = 'sphinx'
2727
html_theme = 'default'

docs/source/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
:Source code: http://github.com/pyexcel/pyexcel-htmlr.git
66
:Issues: http://github.com/pyexcel/pyexcel-htmlr/issues
77
:License: New BSD License
8-
:Development: |release|
98
:Released: |version|
109
:Generated: |today|
1110

pyexcel-htmlr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-htmlr"
33
nick_name: "htmlr"
4-
version: "0.0.2"
5-
current_version: "0.0.2"
6-
release: "0.0.1"
4+
version: "0.5.0"
5+
current_version: "0.5.0"
6+
release: "0.5.0"
77
file_type: 'html'
88
dependencies:
99
- html5lib
1010
- lxml
11-
- pyexcel>=0.5.1.1
11+
- pyexcel-io>=0.5.0
1212
description: "read tables in html file as excel data"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
html5lib
22
lxml
3-
pyexcel>=0.5.1.1
3+
pyexcel-io>=0.5.0

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010

1111
NAME = 'pyexcel-htmlr'
1212
AUTHOR = 'C.W.'
13-
VERSION = '0.0.2'
13+
VERSION = '0.5.0'
1414
1515
LICENSE = 'New BSD'
1616
DESCRIPTION = (
1717
'read tables in html file as excel data' +
1818
''
1919
)
2020
URL = 'https://github.com/pyexcel/pyexcel-htmlr'
21-
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL
21+
DOWNLOAD_URL = '%s/archive/0.5.0.tar.gz' % URL
2222
FILES = ['README.rst', 'CHANGELOG.rst']
2323
KEYWORDS = [
2424
'python'
@@ -42,7 +42,7 @@
4242
INSTALL_REQUIRES = [
4343
'html5lib',
4444
'lxml',
45-
'pyexcel>=0.5.1.1',
45+
'pyexcel-io>=0.5.0',
4646
]
4747

4848

0 commit comments

Comments
 (0)