8000 :egg: :ferris_wheel: first release along pyexcel 0.5.0 family line · pyexcel/pyexcel-xlsxr@1850f94 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1850f94

Browse files
committed
🥚 🎡 first release along pyexcel 0.5.0 family line
1 parent 7e9054c commit 1850f94

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
Change log
22
===========
3+
4+
0.5.0 - 24.11.2017
5+
---------------------------
6+
7+
Initial release

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-xlsxr'
2222
copyright = u'2015-2017 Onni Software Ltd.'
23-
version = '0.0.1'
24-
release = '0.0.1'
23+
version = '0.5.0'
24+
release = '0.5.0'
2525
exclude_patterns = []
2626
pygments_style = 'sphinx'
2727
html_theme = 'default'

pyexcel-xlsxr.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-xlsxr"
33
nick_name: "xlsxr"
4-
version: "0.0.1"
5-
current_version: "0.0.1"
6-
release: "0.0.1"
4+
version: "0.5.0"
5+
current_version: "0.5.0"
6+
release: "0.5.0"
77
file_type: xlsx
88
dependencies:
99
- lxml >= 3.4.4
10+
- pyexcel-io >= 0.5.4
1011
description: "Read xlsx file using partial xml"

pyexcel_xlsxr/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '0.0.1'
1+
__version__ = '0.5.0'
22
__author__ = 'C.W.'

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
lxml >= 3.4.4
2+
pyexcel-io >= 0.5.4

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99

1010
NAME = 'pyexcel-xlsxr'
1111
AUTHOR = 'C.W.'
12-
VERSION = '0.0.1'
12+
VERSION = '0.5.0'
1313
EMAIL = 'wangc_2011@hotmail.com'
1414
LICENSE = 'New BSD'
1515
DESCRIPTION = (
1616
'Read xlsx file using partial xml' +
1717
''
1818
)
1919
URL = 'https://github.com/pyexcel/pyexcel-xlsxr'
20-
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL
20+
DOWNLOAD_URL = '%s/archive/0.5.0.tar.gz' % URL
2121
FILES = ['README.rst', 'CHANGELOG.rst']
2222
KEYWORDS = [
2323
'python'
@@ -39,6 +39,7 @@
3939

4040
INSTALL_REQUIRES = [
4141
'lxml >= 3.4.4',
42+
'pyexcel-io >= 0.5.4',
4243
]
4344

4445

@@ -48,8 +49,8 @@
4849
# You do not need to read beyond this line
4950
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5051
sys.executable)
51-
GS_COMMAND = ('gs pyexcel-xlsxr v0.0.1 ' +
52-
"Find 0.0.1 in changelog for more details")
52+
GS_COMMAND = ('gs pyexcel-xlsxr v0.5.0 ' +
53+
"Find 0.5.0 in changelog for more details")
5354
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
5455
'Please install gease to enable it.')
5556
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)
0