Skip to content

Commit

Permalink
Merge branch 'release/2.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Daisuke Baba committed Sep 14, 2018
2 parents a1f4c5a + 41f1432 commit e025e7d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -65,6 +65,8 @@ $ ./setup.py publish
```

# Revision history
* 2.1.0
- Fix an issue where a dialing number was invalidated in some cases
* 2.0.1
- Fix test case errors
* 2.0.0
Expand Down
5 changes: 5 additions & 0 deletions lib/candy_board_qws/__init__.py
Expand Up @@ -764,6 +764,11 @@ def modem_reset(self, cmd={}):
'AT+QNVW=4548,0,"0000400C00000210"')
if status != "OK":
result = qnvw_result
status, qnvw_result = self.send_at(
'AT+QNVW=930,0,"2A39380000030003002A3939000003000300233737370'
'004000400000000000000000000"')
if status != "OK":
result = qnvw_result

message = {
'status': status,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

version = "2.0.1"
version = "2.1.0"

try:
import pypandoc
Expand Down

0 comments on commit e025e7d

Please sign in to comment.