Release/version 1.4.0 candidate (#758)

This commit is contained in:
Steve Karg
2024-11-04 07:40:17 -06:00
committed by GitHub
parent cf77abac9b
commit f332225b19
4 changed files with 164 additions and 8 deletions
+2 -2
View File
@@ -15,8 +15,8 @@
#define BACNET_VERSION(x, y, z) (((x) << 16) + ((y) << 8) + (z))
#endif
#define BACNET_VERSION_TEXT "1.3.8"
#define BACNET_VERSION_CODE BACNET_VERSION(1, 3, 8)
#define BACNET_VERSION_TEXT "1.4.0"
#define BACNET_VERSION_CODE BACNET_VERSION(1, 4, 0)
#define BACNET_VERSION_MAJOR ((BACNET_VERSION_CODE >> 16) & 0xFF)
#define BACNET_VERSION_MINOR ((BACNET_VERSION_CODE >> 8) & 0xFF)
#define BACNET_VERSION_MAINTENANCE (BACNET_VERSION_CODE & 0xFF)