Skip to content

Commit 2dbf896

Browse files
Making dates readable
DD/MM/YY or MM/DD/YY = confusing. Change to more readable format.
1 parent 3e85c93 commit 2dbf896

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

CHANGES.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
v1.5.0 06/27/2010
1+
v1.5.0 - 27 Jun 2010
22
* Initial Packaging.
33
* Fully restructured into a unified API with tests.
44

5-
v1.7.0 06/30/2010
5+
v1.7.0 - 30 Jun 2010
66
* Now supports both Series 1 and Series 2 modules (the API turned out to be the same).
77
* API frame logic was split into its own class, APIFrame.
88
* XBee renamed to XBeeBase.
@@ -13,36 +13,36 @@ v1.7.0 06/30/2010
1313
* Various docstring updates.
1414
* Updated example code to reflect changes.
1515

16-
v1.7.1 07/09/2010
16+
v1.7.1 - 09 Jul 2010
1717
* Bug fix: Now supports receiving I/O data with 64-bit addressing.
1818
* Previously, an exception was raised when a packet with ID 0x82 arrived, which contains I/O samples with a 64-bit source address. This has been fixed.
1919

20-
v1.8.0 07/09/2010
21-
* Implemented threading support
20+
v1.8.0 - 09 Jul 2010
21+
* Implemented threading support.
2222
* If a callback method is given to the XBeeBase constructor, a new thread will automatically be spawned. This thread will read from the serial port and call the given callback method whenever a valid data packet arrives.
2323
* XBeeBase.halt() was added. This method ensures the proper shutdown of a separate thread if one has been spawned. This method must be called before closing the serial port used by an XBee instance in order to prevent improper use of the serial port.
2424

25-
v1.9.0 07/10/2010
25+
v1.9.0 - 10 Jul 2010
2626
* Implemented Dispatch helper as xbee.helpers.dispatch.
2727
* Dispatch allows one to filter incoming packets between one or more handler functions. This simplifies application logic which must handle more than one packet type. Automated tests are now run as a part of the build process.
2828
* nose must be installed for this feature to operate. If it is not installed, the tests will be skipped and a warning will be generated.
2929
* A 'test' command has been added to setup.py.
3030

31-
v1.9.1 08/12/2010
31+
v1.9.1 - 12 Aug 2010
3232
* Added support for I/O sample data packet with 64-bit addressing.
3333
* Fixed bug where threading.Thread library was not properly initalized in all use cases.
3434
* Added initial documentation.
3535
* Properly included distutils_extensions.py in source distribution archives.
3636

37-
v1.9.2 08/18/2010
37+
v1.9.2 - 18 Aug 2010
3838
* Fixed bug where _write() call on a serial object should have been write().
3939

40-
v2.0.0 12/29/2010
40+
v2.0.0 - 29 Dec 2010
4141
* Added preiminary support for XBee ZB devices; thanks Greg and Brian!
4242
* Improved & unified sample data header parsing code.
4343
* Improved documentation.
4444

45-
v2.1.0 04/14/2013
45+
v2.1.0 - 14 Apr 2013
4646
* Support for XBee ZB devices significantly improved.
4747
* Now raises a KeyError with a useful message when a response that looks like a command is received. This helps debug devices that are not in API mode.
4848
* Improper lengths for the ZigBee tx_explicit cluster and profile fields have been corrected.
@@ -64,14 +64,14 @@ v2.1.0 04/14/2013
6464
* ZigBee IS "Force Sample" AT response (and Remote AT Response) 'parameter' value is no longer raw; it is parsed as I/O samples.
6565
* ZigBee ND "Node Discover" AT response (and Remote AT Response) 'parameter' value is no longer raw; it is parsed into a node discover dictionary.
6666

67-
v2.2.2 11/19/2015
67+
v2.2.2 - 19 Nov 2015
6868
* Add error_callback function to XBeeBase.
6969
* If an error_callback method is given to the XBeeBase constructor (in addition to the callback method), a new thread will automatically be spawned. This thread will read from the serial port and call the error_callback when an unexpected Exception (not ThreadQuitException) is raised while waiting for serial data. This generally indicates that the XBee serial interface needs to be reconnected.
7070

71-
v2.2.3 11/25/2015
71+
v2.2.3 - 25 Nov 2015
7272
* Fix README for GitHub and PyPI.
7373

74-
v2.2.4 03/17/2017
74+
v2.2.4 - 17 Mar 2017
7575
* Added DigiMesh support.
7676
* Added support for Route Record Indicator, Many-to-One Route Request and Route Information packets.
7777
* Improved and simplified tests.

0 commit comments

Comments
 (0)