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.
This commit is contained in:
Viktor Szakats
2008-06-04 09:28:42 +00:00
parent 4021dd9b80
commit d879de1edb
2 changed files with 11 additions and 4 deletions

View File

@@ -8,6 +8,12 @@
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
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 <philb/at/philb.us>
* Set version in harbour.spec to 0.9.9-RC1
* Set version in include/hbver.h to 0.9.9-RC1

View File

@@ -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" */