diff --git a/harbour-RC1/ChangeLog b/harbour-RC1/ChangeLog index 55defe037c..a44d7b95f5 100644 --- a/harbour-RC1/ChangeLog +++ b/harbour-RC1/ChangeLog @@ -8,6 +8,12 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-06-04 11:26 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * include/hbver.h + + Added HB_VERSION unified version identifier: + three bytes: major + minor + revision (0x000909) + This is to aid 3rd parties to detect version. + 2008-06-04 12:34 UTC-0400 Phil Barnett * Set version in harbour.spec to 0.9.9-RC1 * Set version in include/hbver.h to 0.9.9-RC1 diff --git a/harbour-RC1/include/hbver.h b/harbour-RC1/include/hbver.h index 7ebb15a8cb..691fb18e27 100644 --- a/harbour-RC1/include/hbver.h +++ b/harbour-RC1/include/hbver.h @@ -55,10 +55,11 @@ /* NOTE: One of these next three fields can be incremented by the hbverfix program */ -#define HB_VER_MAJOR 0 /* Major version number */ -#define HB_VER_MINOR 9 /* Minor version number */ -#define HB_VER_REVISION 9 /* Revision number */ -#define HB_VER_STATUS "RC1" /* Build status */ +#define HB_VER_MAJOR 0 /* Major version number */ +#define HB_VER_MINOR 9 /* Minor version number */ +#define HB_VER_REVISION 9 /* Revision number */ +#define HB_VER_STATUS "RC1" /* Build status */ +#define HB_VERSION 0x000909 /* Three bytes: Major + Minor + Revision */ /* #include "hb_verbld.h" */