Skip to content

Commit cbd2cfe

Browse files
committed
version: update version to 1.5.0
This commit updates the library version, adds a new entry for 1.5.0 in 'CHANGELOG.rst' file, and updates copyright years. https://onedigi.atlassian.net/browse/XBPL-425 Signed-off-by: Tatiana Leon <Tatiana.Leon@digi.com>
1 parent 22f2253 commit cbd2cfe

File tree

4 files changed

+30
-15
lines changed

4 files changed

+30
-15
lines changed

CHANGELOG.rst

+25-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
v1.4.2 - XX/XX/202X
4+
v1.5.0 - 08/08/2024
55
-------------------
66

77
* Support for new hardware variants:
@@ -12,27 +12,42 @@ v1.4.2 - XX/XX/202X
1212
* XBee RR TH Pro/Non-Pro
1313
* XBee 3 Cellular Global Cat 4
1414
* XBee 3 Cellular North America Cat 4
15-
* XBee XR 900 TH
1615
* XBee XR 868 TH
16+
* XBee XR 900 TH
1717
* XBee 3 BLU
1818
* Support to retrieve XBee statistics.
1919
* Send/receive explicit data in 802.15.4.
2020
(XBee 3 modules support this feature)
21-
* Support for local and remote firmware update of XBee XR 868 and 900.
22-
* Remove 'pysrp' dependency:
21+
* Firmware/profile update support for:
2322

24-
* The library includes support to generate salt and verifier required to
25-
configure '$S', '$V', '$W', '$X', and '$Y' XBee parameters to establish
26-
Bluetooth password.
23+
* XBee RR MMT/SMT/TH Pro/Non-Pro (XBPL-384)
24+
* XBee XR 868 MMT/SMT/TH, local and remote (LCG-398)
25+
* XBee XR 900 MMT/SMT/TH, local and remote (LCG-398)
26+
* XBee 3 BLU, local (XBPL-391)
2727
* Support for sending BLE Generic Access Profile (GAP) scans.
28-
(Only XBee 3 BLU modules support this feature)
28+
(Only XBee 3 BLU modules support this feature) (XBPL-391)
29+
* Remove ``pysrp`` dependency.
30+
31+
The library includes support to generate salt and verifier required to
32+
configure ``$S``, ``$V``, ``$W``, ``$X``, and ``$Y`` XBee parameters to
33+
establish Bluetooth password.
2934
* Bug fixing:
3035

36+
* Fix ``TransmitOptions.ENABLE_UNICAST_TRACE_ROUTE`` value.
37+
* Python 3.10 compatibility: Fix removed deprecated ``collections`` module.
38+
See `collections.abc <https://docs.python.org/3.10/whatsnew/3.10.html#collections-abc>`_,
39+
`Removed <https://docs.python.org/3.10/whatsnew/3.10.html#removed>`_, and
40+
`Changes in the Python API <https://docs.python.org/3.10/whatsnew/3.10.html#changes-in-the-python-api>`_
41+
sections at `What’s New In Python 3.10 <https://docs.python.org/3.10/whatsnew/3.10.html>`_
42+
(DAL-5918)
3143
* Fix order of nodes when creating a Zigbee source route (#278)
32-
* Salt/verifier generation using 'pysrp' was not working with certain
44+
* Firmware update: Do not check XBee region for 'skip' code in XML firmware
45+
file (XBPL-394)
46+
* Salt/verifier generation using ``pysrp`` was not working with certain
3347
passwords (see https://github.com/cocagne/pysrp/issues/55)
34-
Solved by removing 'pysrp' dependency and implementing the code to
48+
Solved by removing ``pysrp`` dependency and implementing the code to
3549
generate them.
50+
* Several minor bug fixes.
3651

3752
v1.4.1 - 12/22/2021
3853
-------------------

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The contributing guidelines are in the `CONTRIBUTING.rst document
4747
License
4848
-------
4949

50-
Copyright 2017-2021, Digi International Inc.
50+
Copyright 2017-2024, Digi International Inc.
5151

5252
The `MPL 2.0 license <https://github.com/digidotcom/xbee-python/blob/master/LICENSE.txt>`_
5353
covers the majority of this project with the following exceptions:

digi/xbee/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2021, Digi International Inc.
1+
# Copyright 2017-2024, Digi International Inc.
22
#
33
# This Source Code Form is subject to the terms of the Mozilla Public
44
# License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -12,11 +12,11 @@
1212
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1313
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414

15-
__version__ = '1.4.1'
15+
__version__ = '1.5.0'
1616
__title__ = 'digi-xbee'
1717
__description__ = 'Digi XBee Python library'
1818
__url__ = 'https://github.com/digidotcom/xbee-python'
1919
__author__ = 'Digi International Inc.'
2020
__author_email__ = 'tech.support@digi.com'
2121
__license__ = 'Mozilla Public License 2.0 (MPL 2.0)'
22-
__copyright__ = '2017-2021, Digi International Inc.'
22+
__copyright__ = '2017-2024, Digi International Inc.'

doc/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Indices and tables
206206
License
207207
=======
208208

209-
Copyright 2017-2021, Digi International Inc.
209+
Copyright 2017-2024, Digi International Inc.
210210

211211
This Source Code Form is subject to the terms of the Mozilla Public
212212
License, v. 2.0. If a copy of the MPL was not distributed with this

0 commit comments

Comments
 (0)