Skip to content

Commit ef48451

Browse files
committed
✨ update version and change log
1 parent 47f62a6 commit ef48451

File tree

6 files changed

+26
-12
lines changed

6 files changed

+26
-12
lines changed

CHANGELOG.rst

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

4+
0.0.2 - 09.06.2019
5+
--------------------------------------------------------------------------------
6+
7+
first release
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. it use pyecharts 1.x to draw ChoroplethMap
11+
412
0.0.1 - 17.04.2019
513
--------------------------------------------------------------------------------
614

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = 'pypi'
77
python_version= '3.6'
88

99
[packages]
10-
pyecharts==0.5.11
10+
pyecharts = '>=1.0.0'
1111

1212
[dev-packages]
1313
nose = "*"

pyecharts-extras.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
overrides: "pyecharts.yml"
22
name: "pyecharts-extras"
3-
version: "0.0.1"
4-
current_version: "0.0.1"
5-
release: "0.0.1"
3+
version: "0.0.2"
4+
current_version: "0.0.2"
5+
release: "0.0.2"
66
copyright_year: 2019
77
license: MIT
88
dependencies:
9-
- pyecharts==0.5.11
9+
- pyecharts>=1.0.0
1010
description: "Draw speciaized graphs using pyecharts"
1111
releases:
12+
- changes:
13+
- action: first release
14+
details:
15+
- it use pyecharts 1.x to draw ChoroplethMap
16+
version: 0.0.2
17+
date: 09.06.2019
1218
- changes:
1319
- action: first release
1420
details:

pyecharts_extras/_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.0.2"
22
__author__ = "pyecharts dev team"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pyecharts==0.5.11
1+
pyecharts>=1.0.0

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626

2727
NAME = "pyecharts-extras"
2828
AUTHOR = "pyecharts dev team"
29-
VERSION = "0.0.1"
29+
VERSION = "0.0.2"
3030
3131
LICENSE = "MIT"
3232
DESCRIPTION = (
3333
"Draw speciaized graphs using pyecharts"
3434
)
3535
URL = "https://github.com/pyecharts/pyecharts-extras"
36-
DOWNLOAD_URL = "%s/archive/0.0.1.tar.gz" % URL
36+
DOWNLOAD_URL = "%s/archive/0.0.2.tar.gz" % URL
3737
FILES = ["README.rst", "CHANGELOG.rst"]
3838
KEYWORDS = [
3939
"python",
@@ -59,7 +59,7 @@
5959
]
6060

6161
INSTALL_REQUIRES = [
62-
"pyecharts==0.5.11",
62+
"pyecharts>=1.0.0",
6363
]
6464
SETUP_COMMANDS = {}
6565

@@ -69,8 +69,8 @@
6969
}
7070
# You do not need to read beyond this line
7171
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
72-
GS_COMMAND = ("gs pyecharts-extras v0.0.1 " +
73-
"Find 0.0.1 in changelog for more details")
72+
GS_COMMAND = ("gs pyecharts-extras v0.0.2 " +
73+
"Find 0.0.2 in changelog for more details")
7474
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7575
"Please install gease to enable it.")
7676
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)