Changed version to 1.5.0.rc1
This commit is contained in:
@@ -12,6 +12,14 @@ The git repositories are hosted at the following sites:
|
||||
* https://bacnet.sourceforge.net/
|
||||
* https://github.com/bacnet-stack/bacnet-stack/
|
||||
|
||||
## [Unreleased] - 2025-11-15
|
||||
|
||||
### Security
|
||||
### Added
|
||||
### Changed
|
||||
### Fixed
|
||||
### Removed
|
||||
|
||||
## [1.4.2] - 2025-11-15
|
||||
|
||||
### Security
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
|
||||
|
||||
project(
|
||||
bacnet-stack
|
||||
VERSION 1.4.2
|
||||
VERSION 1.5.0
|
||||
LANGUAGES C)
|
||||
|
||||
#
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
#define BACNET_VERSION(x, y, z) (((x) << 16) + ((y) << 8) + (z))
|
||||
#endif
|
||||
|
||||
#define BACNET_VERSION_TEXT "1.4.2"
|
||||
#define BACNET_VERSION_CODE BACNET_VERSION(1, 4, 2)
|
||||
#define BACNET_VERSION_TEXT "1.5.0.rc1"
|
||||
#define BACNET_VERSION_CODE BACNET_VERSION(1, 5, 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)
|
||||
|
||||
Reference in New Issue
Block a user