update version to 1.3.1 for release on 29-September-2023. Happy Birthday, Krista!

This commit is contained in:
Steve Karg
2023-09-29 11:18:52 -05:00
parent d0dba10ddf
commit 0bf5027fc7
2 changed files with 29 additions and 14 deletions
+27 -12
View File
@@ -22,30 +22,45 @@ The git repositories are hosted at the following sites:
### Fixed ### Fixed
## [1.3.1] - 2023-09-29
### Added
Added example Channel object WriteProperty callback into example Device objects. (#504)
Added Microsoft Visual Studio 2022 Community Edition solution to ports/win32 (#502)
Added details in apps/blinkt example about starting app with systemd (#505)
### Fixed
Refactored WriteProperty of object-name property rules into example device object (#504)
### Changed
Changed WriteProperty string property checker to ignore length check with zero option.(#504)
## [1.3.0] - 2023-09-28 ## [1.3.0] - 2023-09-28
### Added ### Added
- Added [feature#14] EventTimeStamp decoding from ReadPropertyMultiple app. - Added [feature#14] EventTimeStamp decoding from ReadPropertyMultiple app. (#503)
- Added Channel, Color, Color Temperature, & Lighting Output demo app with Blinkt! - Added Channel, Color, Color Temperature, & Lighting Output demo app with Blinkt! (#503)
- Added pipeline build of piface and blinkt apps with Raspberry Pi OS image. - Added pipeline build of piface and blinkt apps with Raspberry Pi OS image. (#503)
- Added linear interpolation library functions used in fading and ramping. - Added linear interpolation library functions used in fading and ramping. (#503)
### Changed ### Changed
- Added Device timer API to feed elapsed milliseconds to children objects. - Added Device timer API to feed elapsed milliseconds to children objects. (#503)
- Changed gitignore to ease the maintainenance of source files in app folder - Changed gitignore to ease the maintainenance of source files in app folder. (#503)
- Changed example server app device simulator to use mstimer instead of OS time. - Changed example server app device simulator to use mstimer instead of OS time. (#503)
- Changed example channel object to be dynamically created or deleted - Changed example channel object to be dynamically created or deleted. (#503)
- Changed example channel object to handle color & color temperature objects. - Changed example channel object to handle color & color temperature objects. (#503)
### Fixed ### Fixed
- Fixed datetime decode of invalid application tag. (#495) - Fixed datetime decode of invalid application tag. (#495)
- Fixed extraneous SO_BINDTODEVICE error message in Linux BIP - Fixed extraneous SO_BINDTODEVICE error message in Linux BIP. (#498)
- Fixed example Color, Color Temperature, and Lighting object fade, ramp, and step. - Fixed example Color, Color Temperature, and Lighting object fade, ramp, and step. (#503)
- Fixed and secured BACnetXYcolor and ColorCommand codecs. - Fixed and secured BACnetXYcolor and ColorCommand codecs. (#503)
## [1.2.0] - 2023-09-11 ## [1.2.0] - 2023-09-11
+2 -2
View File
@@ -29,8 +29,8 @@
#define BACNET_VERSION(x,y,z) (((x)<<16)+((y)<<8)+(z)) #define BACNET_VERSION(x,y,z) (((x)<<16)+((y)<<8)+(z))
#endif #endif
#define BACNET_VERSION_TEXT "1.3.0" #define BACNET_VERSION_TEXT "1.3.1"
#define BACNET_VERSION_CODE BACNET_VERSION(1,3,0) #define BACNET_VERSION_CODE BACNET_VERSION(1,3,1)
#define BACNET_VERSION_MAJOR ((BACNET_VERSION_CODE>>16)&0xFF) #define BACNET_VERSION_MAJOR ((BACNET_VERSION_CODE>>16)&0xFF)
#define BACNET_VERSION_MINOR ((BACNET_VERSION_CODE>>8)&0xFF) #define BACNET_VERSION_MINOR ((BACNET_VERSION_CODE>>8)&0xFF)
#define BACNET_VERSION_MAINTENANCE (BACNET_VERSION_CODE&0xFF) #define BACNET_VERSION_MAINTENANCE (BACNET_VERSION_CODE&0xFF)