From 401dbaa89da4c81f5745d55add94cee5d24273ba Mon Sep 17 00:00:00 2001 From: skarg Date: Tue, 8 Jan 2008 23:12:32 +0000 Subject: [PATCH] Updated the version number. --- bacnet-stack/.splintrc | 11 +---------- bacnet-stack/include/version.h | 6 +++--- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/bacnet-stack/.splintrc b/bacnet-stack/.splintrc index caf2e8c5..370de919 100644 --- a/bacnet-stack/.splintrc +++ b/bacnet-stack/.splintrc @@ -1,10 +1 @@ --Iinclude --Idemo/handler --Idemo/object --Iports/linux --castfcnptr --fullinitblock --weak -+posixlib --skipposixheaders - +-Iinclude -Idemo/handler -Idemo/object -Iports/linux -castfcnptr -fullinitblock -weak +posixlib diff --git a/bacnet-stack/include/version.h b/bacnet-stack/include/version.h index a888f7dd..61f40891 100644 --- a/bacnet-stack/include/version.h +++ b/bacnet-stack/include/version.h @@ -1,6 +1,6 @@ /*####COPYRIGHTBEGIN#### ------------------------------------------- - Copyright (C) 2007 Steve Karg + Copyright (C) 2007-2008 Steve Karg This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -39,8 +39,8 @@ #define BACNET_VERSION(x,y,z) (((x)<<16)+((y)<<8)+(z)) #endif -#define BACNET_VERSION_TEXT "0.4.1" -#define BACNET_VERSION_CODE BACNET_VERSION(0,4,1) +#define BACNET_VERSION_TEXT "0.4.2" +#define BACNET_VERSION_CODE BACNET_VERSION(0,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)