diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 705ae45..7d19f3a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,20 @@ Changelog ========= +v1.1.0 - 01/19/2018 +------------------- + +* Add support for new hardware variants: + * XB8X +* Add missing 'Modem Status' values for Remote Manager connect and disconnect + events. +* Bug Fixing: + * Fix timeouts on Unix plaforms. + * Fix the return source endpoint method from the 'ExplicitRXIndicatorPacket' + class. + * Perform general bug fixing when working in API escaped mode. + + v1.0.0 - 10/02/2017 ------------------- @@ -34,4 +48,4 @@ include: * Receive IO data samples from any remote XBee device on the network. * Support for explicit frames and application layer fields (Source endpoint, Destination endpoint, Profile ID, and Cluster ID). -* Multiple examples that show how to use the available APIs. \ No newline at end of file +* Multiple examples that show how to use the available APIs. diff --git a/doc/conf.py b/doc/conf.py index 3305467..f571375 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = '1.0.0' +version = '1.1.0' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +release = '1.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 9d22819..118c2e4 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# Copyright (c) 2017 Digi International Inc. All Rights Reserved. +# Copyright (c) 2017, 2018, Digi International Inc. All Rights Reserved. from setuptools import setup, find_packages from codecs import open @@ -20,7 +20,7 @@ setup( name='digi-xbee', - version='1.0.0', + version='1.1.0', description='Digi XBee Python library', long_description=long_description, url='https://github.com/digidotcom/python-xbee',