updated version to 1.3.0 for release on 28-Sept-2023

This commit is contained in:
Steve Karg
2023-09-28 11:26:30 -05:00
parent da2dc9841a
commit 95c2a86041
3 changed files with 16 additions and 2 deletions
+9
View File
@@ -18,6 +18,15 @@ The git repositories are hosted at the following sites:
### Added ### Added
### Changed
### Fixed
## [1.3.0] - 2023-09-28
### Added
- Added [feature#14] EventTimeStamp decoding from ReadPropertyMultiple app. - Added [feature#14] EventTimeStamp decoding from ReadPropertyMultiple app.
- Added Channel, Color, Color Temperature, & Lighting Output demo app with Blinkt! - Added Channel, Color, Color Temperature, & Lighting Output demo app with Blinkt!
- 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.
+5
View File
@@ -3,6 +3,11 @@
# https://sourceforge.net/p/forge/documentation/Using%20the%20Release%20API/ # https://sourceforge.net/p/forge/documentation/Using%20the%20Release%20API/
# sudo apt-get update -qq # sudo apt-get update -qq
# sudo apt-get install -qq build-essential mingw-w64 curl git # sudo apt-get install -qq build-essential mingw-w64 curl git
#
# Prior to running this script, be sure to:
# a) update CHANGELOG and version.h with new version number, and commit changes.
# b) git tag to bacnet-stack-x.y.z where x.y.z is the new version number
# c) create long term branch as bacnet-stack-x.y if needed
USERNAME='skarg' USERNAME='skarg'
+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.2.0" #define BACNET_VERSION_TEXT "1.3.0"
#define BACNET_VERSION_CODE BACNET_VERSION(1,2,0) #define BACNET_VERSION_CODE BACNET_VERSION(1,3,0)
#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)