Released version 1.4.2 on 15-Nov-2025.

This commit is contained in:
Steve Karg
2025-11-15 12:52:22 -06:00
parent c1e685d490
commit 0682428c86
4 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ The git repositories are hosted at the following sites:
* https://bacnet.sourceforge.net/
* https://github.com/bacnet-stack/bacnet-stack/
## [Unreleased]
## [1.4.2] - 2025-11-15
### Security
+1 -1
View File
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(
bacnet-stack
VERSION 1.4.1
VERSION 1.4.2
LANGUAGES C)
#
+4 -6
View File
@@ -5,9 +5,10 @@
# 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.
# a) update CHANGELOG, version.h and CMakeLists.txt with new version number
# b) commit changes into master branch
# After running this script, be sure to:
# a) create long term branch as bacnet-stack-x.y if needed
# c) create long term branch as bacnet-stack-x.y if needed
USERNAME='skarg'
@@ -40,11 +41,8 @@ function bacnet_create_work_tree() {
function bacnet_build_apps() {
echo ""
echo "Build Win32 Apps"
export CC=i686-w64-mingw32-gcc
export LD=i686-w64-mingw32-ld
i686-w64-mingw32-gcc --version
make -C $work_tree clean
make -C $work_tree -s LEGACY=true win32
make -C $work_tree -s LEGACY=true mingw32
}
function bacnet_zip_apps() {
+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.1"
#define BACNET_VERSION_CODE BACNET_VERSION(1, 4, 1)
#define BACNET_VERSION_TEXT "1.4.2"
#define BACNET_VERSION_CODE BACNET_VERSION(1, 4, 2)
#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)