Skip to content

Commit a0b9718

Browse files
committed
release v2.5.8
1 parent 4b4a144 commit a0b9718

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ChangeLog for pymycobot.
22

3+
## v2.5.8 (2021-08-10)
4+
- release v2.5.8
5+
- fix `is_servo_enable` error.
6+
- fix `send_coord` index error.
7+
38
## v2.5.7 (2021-08-05)
49

510
- release v2.5.7

pymycobot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__all__ = ["MyCobot", "MycobotCommandGenerater", "Angle", "Coord", "utils"]
88

9-
__version__ = "2.5.7"
9+
__version__ = "2.5.8"
1010
__author__ = "Zachary zhang"
1111
__email__ = "lijun.zhang@elephantrobotics.com"
1212
__git_url__ = "https://github.com/elephantrobotics/pymycobot"

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# encoding=utf-8
12
import sys
23

34
PYTHON_VERSION = sys.version_info[:2]
@@ -12,7 +13,10 @@
1213
if PYTHON_VERSION == (2, 7):
1314
long_description = ""
1415
else:
15-
long_description = open("README.md").read() + open("docs/README.md").read()
16+
long_description = (
17+
open("README.md", encoding="utf-8").read()
18+
+ open("docs/README.md", encoding="utf-8").read()
19+
)
1620

1721
setuptools.setup(
1822
name="pymycobot",

0 commit comments

Comments
 (0)