Skip to content

Commit

Permalink
Release of version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
liuszeng committed Nov 14, 2016
1 parent 41ead94 commit 0505f65
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 32 deletions.
6 changes: 3 additions & 3 deletions AWSIoTPythonSDK/MQTTLib.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
# */

# import mqttCore
import core.protocol.mqttCore as mqttCore
import AWSIoTPythonSDK.core.protocol.mqttCore as mqttCore
# import shadowManager
import core.shadow.shadowManager as shadowManager
import AWSIoTPythonSDK.core.shadow.shadowManager as shadowManager
# import deviceShadow
import core.shadow.deviceShadow as deviceShadow
import AWSIoTPythonSDK.core.shadow.deviceShadow as deviceShadow
# Constants
# - Protocol types:
MQTTv3_1 = 3
Expand Down
2 changes: 1 addition & 1 deletion AWSIoTPythonSDK/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import sys

__version__ = "1.1.0"
__version__ = "1.1.1"


6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
=========

1.1.1
=====
* bugfix:Issue:`#23 <https://github.com/aws/aws-iot-device-sdk-python/issues/23>`__
* bugfix:README documentation


1.1.0
=====
* feature:AWSIoTMQTTClient:last will configuration APIs
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,9 @@ default configuration for backoff timing will be performed on initialization:

.. code-block:: python
baseReconnectQuietTimeSecond = 1;
maxReconnectQuietTimeSecond = 32;
stableConnectionTimeSecond = 20;
baseReconnectQuietTimeSecond = 1
maxReconnectQuietTimeSecond = 32
stableConnectionTimeSecond = 20
Offline Publish Requests Queueing with Draining
_______________________________________________
Expand Down
6 changes: 1 addition & 5 deletions samples/ThingShadowEcho/ThingShadowEcho.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,7 @@ def customShadowCallback_Delta(self, payload, responseStatus, token):
exit(2)

# Configure logging
logger = None
if sys.version_info[0] == 3:
logger = logging.getLogger("core") # Python 3
else:
logger = logging.getLogger("AWSIoTPythonSDK.core") # Python 2
logger = logging.getLogger("AWSIoTPythonSDK.core")
logger.setLevel(logging.DEBUG)
streamHandler = logging.StreamHandler()
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
Expand Down
6 changes: 1 addition & 5 deletions samples/basicPubSub/basicPubSub.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,7 @@ def customCallback(client, userdata, message):
exit(2)

# Configure logging
logger = None
if sys.version_info[0] == 3:
logger = logging.getLogger("core") # Python 3
else:
logger = logging.getLogger("AWSIoTPythonSDK.core") # Python 2
logger = logging.getLogger("AWSIoTPythonSDK.core")
logger.setLevel(logging.DEBUG)
streamHandler = logging.StreamHandler()
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
Expand Down
6 changes: 1 addition & 5 deletions samples/basicPubSub/basicPubSub_CognitoSTS.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,7 @@ def customCallback(client, userdata, message):
exit(2)

# Configure logging
logger = None
if sys.version_info[0] == 3:
logger = logging.getLogger("core") # Python 3
else:
logger = logging.getLogger("AWSIoTPythonSDK.core") # Python 2
logger = logging.getLogger("AWSIoTPythonSDK.core")
logger.setLevel(logging.DEBUG)
streamHandler = logging.StreamHandler()
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
Expand Down
6 changes: 1 addition & 5 deletions samples/basicShadow/basicShadowDeltaListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,7 @@ def customShadowCallback_Delta(payload, responseStatus, token):
exit(2)

# Configure logging
logger = None
if sys.version_info[0] == 3:
logger = logging.getLogger("core") # Python 3
else:
logger = logging.getLogger("AWSIoTPythonSDK.core") # Python 2
logger = logging.getLogger("AWSIoTPythonSDK.core")
logger.setLevel(logging.DEBUG)
streamHandler = logging.StreamHandler()
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
Expand Down
6 changes: 1 addition & 5 deletions samples/basicShadow/basicShadowUpdater.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,7 @@ def customShadowCallback_Delete(payload, responseStatus, token):
exit(2)

# Configure logging
logger = None
if sys.version_info[0] == 3:
logger = logging.getLogger("core") # Python 3
else:
logger = logging.getLogger("AWSIoTPythonSDK.core") # Python 2
logger = logging.getLogger("AWSIoTPythonSDK.core")
logger.setLevel(logging.DEBUG)
streamHandler = logging.StreamHandler()
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
Expand Down

0 comments on commit 0505f65

Please sign in to comment.