Changed version to 1.5.0.rc1

This commit is contained in:
Steve Karg
2025-11-15 13:07:41 -06:00
parent 0682428c86
commit 51358e83f9
3 changed files with 11 additions and 3 deletions
+8
View File
@@ -12,6 +12,14 @@ The git repositories are hosted at the following sites:
* https://bacnet.sourceforge.net/ * https://bacnet.sourceforge.net/
* https://github.com/bacnet-stack/bacnet-stack/ * https://github.com/bacnet-stack/bacnet-stack/
## [Unreleased] - 2025-11-15
### Security
### Added
### Changed
### Fixed
### Removed
## [1.4.2] - 2025-11-15 ## [1.4.2] - 2025-11-15
### Security ### Security
+1 -1
View File
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project( project(
bacnet-stack bacnet-stack
VERSION 1.4.2 VERSION 1.5.0
LANGUAGES C) LANGUAGES C)
# #
+2 -2
View File
@@ -15,8 +15,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.4.2" #define BACNET_VERSION_TEXT "1.5.0.rc1"
#define BACNET_VERSION_CODE BACNET_VERSION(1, 4, 2) #define BACNET_VERSION_CODE BACNET_VERSION(1, 5, 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)