]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/version.h
With the exceptions of DnD, wxGTk now works with
[wxWidgets.git] / include / wx / version.h
index 942b51a73a3bcdade0bdf9ee20902634fea3af3b..9f9b60d0a0edb856d3dcd6cb278a9c564240e503 100644 (file)
 
 /* Bump-up with each new version */
 #define wxMAJOR_VERSION    2
-#define wxMINOR_VERSION    0
-#define wxRELEASE_NUMBER   1
-#define wxVERSION_STRING "wxWindows 2.0.1"
+#define wxMINOR_VERSION    1
+#define wxRELEASE_NUMBER   0
+#define wxVERSION_STRING "wxWindows 2.1.0"
 #define wxVERSION_NUMBER (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER
-#define wxBETA_NUMBER      6
+#define wxBETA_NUMBER      1
 #define wxVERSION_FLOAT wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0)
 
 #endif