Skip to content

Commit

Permalink
🥚 🎡 release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Apr 15, 2019
1 parent 3d3bfbf commit ca44d25
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:

stage: test

script: make test

before_install:
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
mv min_requirements.txt requirements.txt ;
Expand Down
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.0.3 - 15.04.2019
--------------------------------------------------------------------------------

update
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#. Fix missing snapshot.js

0.0.2 - 12.04.2019
--------------------------------------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@

NAME = "snapshot-phantomjs"
AUTHOR = "pyecharts dev team"
VERSION = "0.0.2"
VERSION = "0.0.3"
EMAIL = "[email protected]"
LICENSE = "MIT"
DESCRIPTION = "Render pyecharts as image via phantomjs"
URL = "https://github.com/pyecharts/snapshot-phantomjs"
DOWNLOAD_URL = "%s/archive/0.0.2.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.0.3.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = ["python", "pyecharts", "chart"]

Expand All @@ -54,7 +54,7 @@
# You do not need to read beyond this line
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
GS_COMMAND = (
"gs snapshot-phantomjs v0.0.2 " + "Find 0.0.2 in changelog for more details"
"gs snapshot-phantomjs v0.0.3 " + "Find 0.0.3 in changelog for more details"
)
NO_GS_MESSAGE = (
"Automatic github release is disabled. " + "Please install gease to enable it."
Expand Down
12 changes: 9 additions & 3 deletions snapshot-phantomjs.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
overrides: pyecharts.yml
name: "snapshot-phantomjs"
version: "0.0.2"
current_version: "0.0.2"
release: "0.0.2"
version: "0.0.3"
current_version: "0.0.3"
release: "0.0.3"
copyright_year: 2019
license: MIT
nodocs: true
min_python_version: "3.5"
dependencies: []
description: "Render pyecharts as image via phantomjs"
releases:
- changes:
- action: update
details:
- Fix missing snapshot.js
version: 0.0.3
date: 15.04.2019
- changes:
- action: update
details:
Expand Down
2 changes: 1 addition & 1 deletion snapshot_phantomjs/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.0.2"
__version__ = "0.0.3"
__author__ = "pyecharts dev team"

0 comments on commit ca44d25

Please sign in to comment.