Skip to content

Commit 22545b5

Browse files
committed
release v2.5.9
1 parent 406c8fa commit 22545b5

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"fomatter",
88
"gpio",
99
"mesg",
10+
"msecs",
1011
"mycobot",
1112
"pymycobot",
1213
"pytest",

CHANGELOG.md

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

3+
## v2.5.9 (2021-08-30)
4+
- release v2.5.9
5+
- import `utils` module.
6+
- modify `send_coord()` for atom4.0
7+
- update document.
8+
39
## v2.5.8 (2021-08-10)
410
- release v2.5.8
511
- fix `is_servo_enable` error.

pymycobot/__init__.py

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

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

10-
__version__ = "2.5.8"
10+
__version__ = "2.5.9"
1111
__author__ = "Zachary zhang"
1212
__email__ = "[email protected]"
1313
__git_url__ = "https://github.com/elephantrobotics/pymycobot"

pymycobot/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from __future__ import division
12
import struct
23

34

pymycobot/mycobot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from __future__ import division
12
import time
23
import math
34
import logging

0 commit comments

Comments
 (0)