use the more inviting term 'testing', not 'unstable'

This commit is contained in:
Dick Hollenbeck 2010-09-20 11:26:48 -05:00
parent d536f9d914
commit df5ce91765
1 changed files with 4 additions and 2 deletions

View File

@ -9,7 +9,9 @@
#define KICAD_BUILD_VERSION "(2010-04-19 BZR 23xx)"
#endif
#define VERSION_STABILITY "unstable"
//#define VERSION_STABILITY "stable"
#define VERSION_STABILITY "testing"
/** Function GetBuildVersion()
* Return the build date and version
@ -18,6 +20,6 @@ wxString GetBuildVersion()
{
static wxString msg;
msg.Printf( wxT("%s-%s"),
wxT( KICAD_BUILD_VERSION ), wxT(VERSION_STABILITY));
wxT( KICAD_BUILD_VERSION ), wxT( VERSION_STABILITY ));
return msg;
}