Skip to content

Commit e32ed62

Browse files
committed
release 🥚 🎡 0.0.11. better error message for missing phantomjs
1 parent 1cb6b94 commit e32ed62

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
Change log
22
===========
33

4-
0.0.9 - 23.10.2017
4+
0.1.1 - 2.11.2017
5+
--------------------------------------------------------------------------------
6+
7+
#. Updated, `#7, <https://github.com/chfw/pyecharts-snapshot/pull/7>`_: helpful
8+
error message on missing phantomjs.
9+
10+
0.1.0 - 23.10.2017
511
--------------------------------------------------------------------------------
612

713
#. pyexcel `#105 <https://github.com/pyexcel/pyexcel/issues/105>`_, remove gease

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ pyecharts-snapshot renders the output of pyecharts as a png, jpeg, gif image or
1515
a pdf file at command line or in your code.
1616

1717

18+
Please be aware of its dependency on **phantom.js**.
19+
1820
Usage
1921
================================================================================
2022

docs/source/conf.py

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

1717
project = u'pyecharts-snapshot'
1818
copyright = u'2017 Onni Software Ltd.'
19-
version = '0.0.10'
20-
release = '0.0.10'
19+
version = '0.0.11'
20+
release = '0.0.11'
2121
exclude_patterns = []
2222
pygments_style = 'sphinx'
2323
html_theme = 'default'

pyecharts-snapshot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ organisation: "chfw"
33
author: "C.W."
44
55
company: "Onni Software Ltd."
6-
version: "0.0.10"
7-
current_version: "0.0.10"
8-
release: "0.0.10"
6+
version: "0.0.11"
7+
current_version: "0.0.11"
8+
release: "0.0.11"
99
copyright_year: 2017
1010
command_line_interface: "snapshot"
1111
entry_point: "pyecharts_snapshot.main:main"

setup.py

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

1010
NAME = 'pyecharts-snapshot'
1111
AUTHOR = 'C.W.'
12-
VERSION = '0.0.10'
12+
VERSION = '0.0.11'
1313
1414
LICENSE = 'MIT'
1515
ENTRY_POINTS = {
@@ -22,7 +22,7 @@
2222
''
2323
)
2424
URL = 'https://github.com/chfw/pyecharts-snapshot'
25-
DOWNLOAD_URL = '%s/archive/0.0.10.tar.gz' % URL
25+
DOWNLOAD_URL = '%s/archive/0.0.11.tar.gz' % URL
2626
FILES = ['README.rst', 'CONTRIBUTORS.rst', 'CHANGELOG.rst']
2727
KEYWORDS = [
2828
'echarts',
@@ -60,11 +60,12 @@
6060
# You do not need to read beyond this line
6161
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
6262
sys.executable)
63-
GS_COMMAND = ('gs pyecharts-snapshot v0.0.10 ' +
64-
"Find 0.0.10 in changelog for more details")
63+
GS_COMMAND = ('gs pyecharts-snapshot v0.0.11 ' +
64+
"Find 0.0.11 in changelog for more details")
6565
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
6666
'Please install gease to enable it.')
67-
UPLOAD_FAILED_MSG = ('Upload failed. please run "%s" yourself.')
67+
UPLOAD_FAILED_MSG = (
68+
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND)
6869
HERE = os.path.abspath(os.path.dirname(__file__))
6970

7071

0 commit comments

Comments
 (0)