Updated CHANGELOG for v1.4.1 release on April 11, 2025. Happy birthday to me!

This commit is contained in:
Steve Karg
2025-04-11 21:19:21 -05:00
parent 5022976cf9
commit c111154993
3 changed files with 171 additions and 3 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.4.0"
#define BACNET_VERSION_CODE BACNET_VERSION(1, 4, 0)
#define BACNET_VERSION_TEXT "1.4.1"
#define BACNET_VERSION_CODE BACNET_VERSION(1, 4, 1)
#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)