Skip to content

Commit

Permalink
✨ update version and change log
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Jun 9, 2019
1 parent 47f62a6 commit ef48451
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 12 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.0.2 - 09.06.2019
--------------------------------------------------------------------------------

first release
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#. it use pyecharts 1.x to draw ChoroplethMap

0.0.1 - 17.04.2019
--------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = 'pypi'
python_version= '3.6'

[packages]
pyecharts==0.5.11
pyecharts = '>=1.0.0'

[dev-packages]
nose = "*"
Expand Down
14 changes: 10 additions & 4 deletions pyecharts-extras.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
overrides: "pyecharts.yml"
name: "pyecharts-extras"
version: "0.0.1"
current_version: "0.0.1"
release: "0.0.1"
version: "0.0.2"
current_version: "0.0.2"
release: "0.0.2"
copyright_year: 2019
license: MIT
dependencies:
- pyecharts==0.5.11
- pyecharts>=1.0.0
description: "Draw speciaized graphs using pyecharts"
releases:
- changes:
- action: first release
details:
- it use pyecharts 1.x to draw ChoroplethMap
version: 0.0.2
date: 09.06.2019
- changes:
- action: first release
details:
Expand Down
2 changes: 1 addition & 1 deletion pyecharts_extras/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.0.1"
__version__ = "0.0.2"
__author__ = "pyecharts dev team"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyecharts==0.5.11
pyecharts>=1.0.0
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@

NAME = "pyecharts-extras"
AUTHOR = "pyecharts dev team"
VERSION = "0.0.1"
VERSION = "0.0.2"
EMAIL = "[email protected]"
LICENSE = "MIT"
DESCRIPTION = (
"Draw speciaized graphs using pyecharts"
)
URL = "https://github.com/pyecharts/pyecharts-extras"
DOWNLOAD_URL = "%s/archive/0.0.1.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.0.2.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand All @@ -59,7 +59,7 @@
]

INSTALL_REQUIRES = [
"pyecharts==0.5.11",
"pyecharts>=1.0.0",
]
SETUP_COMMANDS = {}

Expand All @@ -69,8 +69,8 @@
}
# 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 pyecharts-extras v0.0.1 " +
"Find 0.0.1 in changelog for more details")
GS_COMMAND = ("gs pyecharts-extras v0.0.2 " +
"Find 0.0.2 in changelog for more details")
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
"Please install gease to enable it.")
UPLOAD_FAILED_MSG = (
Expand Down

0 comments on commit ef48451

Please sign in to comment.