Skip to content

Commit 32b9b9d

Browse files
committed
version: update the version of both the Core and Xamarin packages to 1.0.1
- Updated the release notes and documentation copyright too. Signed-off-by: Diego Escalona <diego.escalona@digi.com>
1 parent e1f87c8 commit 32b9b9d

File tree

6 files changed

+74
-16
lines changed

6 files changed

+74
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ document.
6464

6565
## License
6666

67-
Copyright 2019, Digi International Inc.
67+
Copyright 2019, 2020, Digi International Inc.
6868
Copyright 2014-2015, Sébastien RAULT.
6969

7070
This Source Code Form is subject to the terms of the Mozilla Public

XBeeLibrary.Core/XBeeLibrary.Core.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<RootNamespace>XBeeLibrary.Core</RootNamespace>
66
<AssemblyName>XBeeLibrary.Core</AssemblyName>
77
<TargetFramework>netstandard2.0</TargetFramework>
8-
<Version>1.0.0</Version>
8+
<Version>1.0.1</Version>
99
<Company>Digi International Inc.</Company>
10-
<Copyright>Copyright 2019, Digi International Inc. All rights reserved.</Copyright>
10+
<Copyright>Copyright 2019, 2020, Digi International Inc. All rights reserved.</Copyright>
1111
<Product>XBee Library Core</Product>
1212
<Title>XBee Library Core</Title>
1313
<Authors>Digi International Inc.</Authors>
@@ -20,8 +20,10 @@
2020
<Description>C# library to interact with Digi International's XBee radio frequency modules from mobile devices.</Description>
2121
<PackageTags>xbee, library, csharp, digi-xbee, digi, zigbee, bluetooth, rf</PackageTags>
2222
<PackageReleaseNotes>
23-
<![CDATA[
24-
- First release. Everything is new.
23+
<![CDATA[
24+
- Limited the number of bytes that can be sent per operation to other XBee interfaces to 255 bytes.
25+
- Fixed an issue reading data from a specific device if the device's 16-bit address is unknown.
26+
- Cellular devices now return their actual 64-bit address.
2527
]]>
2628
</PackageReleaseNotes>
2729
</PropertyGroup>

XBeeLibrary.Core/release_notes.txt

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
XBeeLibrary.Core
33

44
Release Notes
5-
Build 1.0.0
6-
9 August, 2019
5+
Build 1.0.1
6+
15 September, 2020
77

8-
Copyright 2019, Digi International Inc.
8+
Copyright 2019, 2020, Digi International Inc.
99
http://www.digi.com
1010

1111
Introduction
@@ -15,6 +15,35 @@
1515
which allows customers to easily develop C# applications that communicate with
1616
XBee modules.
1717

18+
XBee C# Library v1.0.1, September 2020
19+
-------------------------------------------------------------------------------
20+
1. Supported Hardware:
21+
* XBee modules:
22+
* XBee/XBee-PRO RF Module Family
23+
* XBee 3 (Zigbee 3, DigiMesh 2.4, 802.15.4 and Cellular)
24+
* XBee Cellular
25+
* XBee 802.15.4
26+
* XBee-PRO 802.15.4
27+
* XBee ZB
28+
* XBee-PRO ZB
29+
* XBee ZB SMT
30+
* XBee-PRO ZB SMT
31+
* XBee-PRO 900HP
32+
* XBee-PRO 900
33+
* XBee-PRO DigiMesh 900
34+
* XBee DigiMesh 2.4
35+
* XBee-PRO DigiMesh 2.4
36+
* XBee-PRO 868
37+
* XBee 865LP
38+
* XBee 868LP
39+
40+
2. Changes with respect to previous version:
41+
* Limited the number of bytes that can be sent per operation to other
42+
XBee interfaces to 255 bytes.
43+
* Fixed an issue reading data from a specific device if the device's
44+
16-bit address is unknown.
45+
* Cellular devices now return their actual 64-bit address.
46+
1847
XBee C# Library v1.0.0, August 2019
1948
-------------------------------------------------------------------------------
2049
1. Supported Hardware:

XBeeLibrary.Xamarin/XBeeLibrary.Xamarin.csproj

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<RootNamespace>XBeeLibrary.Xamarin</RootNamespace>
66
<AssemblyName>XBeeLibrary.Xamarin</AssemblyName>
77
<TargetFramework>netstandard2.0</TargetFramework>
8-
<Version>1.0.0</Version>
8+
<Version>1.0.1</Version>
99
<Company>Digi International Inc.</Company>
10-
<Copyright>Copyright 2019, Digi International Inc. All rights reserved.</Copyright>
10+
<Copyright>Copyright 2019, 2020, Digi International Inc. All rights reserved.</Copyright>
1111
<Product>XBee Library for Xamarin</Product>
1212
<Title>XBee Library for Xamarin</Title>
1313
<Authors>Digi International Inc.</Authors>
@@ -20,8 +20,15 @@
2020
<Description>C# library for Xamarin to interact with Digi International's XBee radio frequency modules from mobile devices.</Description>
2121
<PackageTags>xbee, library, xamarin, digi-xbee, digi, zigbee, bluetooth, rf</PackageTags>
2222
<PackageReleaseNotes>
23-
<![CDATA[
24-
- First release. Everything is new.
23+
<![CDATA[
24+
- Limited the number of bytes that can be sent per operation to other XBee interfaces to 255 bytes.
25+
- The library now splits and sends data in chunks when it exceeds the MTU size.
26+
- Added more possibilities to instantiate XBeeBLEDevice classes.
27+
- Updated the Plugin.BLE nuget version to 2.1.1 in the examples and library.
28+
- Examples:
29+
- Updated the Anddroid SDK target version to API 28.
30+
- Updated the minimum iOS version to 10.2
31+
- Added 2 new keys in iOS to allow the examples to use Bluetooth.
2532
]]>
2633
</PackageReleaseNotes>
2734
</PropertyGroup>

XBeeLibrary.Xamarin/release_notes.txt

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
XBeeLibrary.Xamarin
33

44
Release Notes
5-
Build 1.0.0
6-
9 August, 2019
5+
Build 1.0.1
6+
15 September, 2020
77

8-
Copyright 2019, Digi International Inc.
8+
Copyright 2019, 2020, Digi International Inc.
99
http://www.digi.com
1010

1111
Introduction
@@ -15,6 +15,26 @@
1515
Xamarin, which allows customers to easily develop Xamarin applications that
1616
communicate with XBee modules over Bluetooth Low Energy.
1717

18+
XBee Library for Xamarin v1.0.1, September 2020
19+
-------------------------------------------------------------------------------
20+
1. Supported Hardware:
21+
* XBee modules:
22+
* XBee/XBee-PRO RF Module Family
23+
* XBee 3 (Zigbee 3, DigiMesh 2.4, 802.15.4 and Cellular)
24+
25+
2. Changes with respect to previous version:
26+
* Limited the number of bytes that can be sent per operation to other
27+
XBee interfaces to 255 bytes.
28+
* The library now splits and sends data in chunks when it exceeds the
29+
MTU size.
30+
* Added more possibilities to instantiate XBeeBLEDevice classes.
31+
* Updated the Plugin.BLE nuget version to 2.1.1 in the examples and
32+
library.
33+
* Examples:
34+
* Updated the Anddroid SDK target version to API 28.
35+
* Updated the minimum iOS version to 10.2
36+
* Added 2 new keys in iOS to allow the examples to use Bluetooth.
37+
1838
XBee Library for Xamarin v1.0.0, August 2019
1939
-------------------------------------------------------------------------------
2040
1. Supported Hardware:

docs/templates/layout/_master.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
</div>
7373
<div class="copyright col-sm-6">
7474
<div class="copyright-info">
75-
©2019 Digi International Inc. All rights reserved.
75+
©2019, 2020, Digi International Inc. All rights reserved.
7676
</div>
7777
<div class="footer-icon">
7878
<img src="../images/Digi_logo_banner.png" alt="Digi International Inc." class="logo">

0 commit comments

Comments
 (0)