+All:
+
+- added wxDateSpan::operator==() and !=() (Lukasz Michalski)
+- use true/false throughout the library instead of TRUE/FALSE
+- wxStopWatch::Start() resumes the stop watch if paused, as per the docs
+- added wxDirTraverser::OnOpenError() to customize the error handling
+- added wxArray::SetCount()
+- wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
+ by default in Unicode mode
+- bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
+- added wx/math.h (John Labenski)
+- added Catalan translations (Pau Bosch i Crespo)
+- fixed bug with deleting entries at root level in wxFileConfig
+
+wxBase:
+
+- added Watcom makefiles
+
+All GUI ports:
+
+- added alpha channel support to wxImage
+- added wxCLOSE_BOX style for dialogs and frames
+- added wxSplitterWindow handler to XRC
+- added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski)
+- added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
+- implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
+- improved contrib/utils/convertrc parsing (David J. Cooke)
+- fixed handling of URLs and filenames in wxFileSystem
+- implemented alignment for wxGrid bool editor and renderer
+- support wxListCtrl columns alignment for all platforms and not just MSW
+- added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
+- WXR resources can now be used in Unicode builds
+- it is now possible to use several wxFileHistory objects in the same menu
+ by giving them different base IDs (Dimitri Schoolwerth)
+
+- changed to type-safe wxSizerItemList for wxSizer child items
+ Deprecated:
+ wxSizer::Remove( wxWindow* )
+ - it does not function as Remove would usually be expected to
+ and destroy the window, use Detach instead
+ wxSizer::GetOption(),
+ wxSizer::SetOption()
+ - wxSizer 'option' parameter was renamed 'proportion' to better
+ reflect its action, use Get/SetProportion instead
+ wxKeyEvent::KeyCode()
+ - use GetKeyCode instead
+ wxList:: Number, First, Last, Nth
+ - use typesafe GetCount, GetFirst, GetLast, Item instead
+ wxNode:: Next, Previous, Data
+ - use typesafe Get* instead
+ wxListBase::operator wxList&()
+ - use typesafe lists instead
+