+- Added positional parameters support to wxVsnprintf() (Francesco Montorsi)
+- wx(F)File, wxTextFile and wxInputStreams recognize Unicode BOM now
+- Many fixes for UTF-16/32 handling in Unicode builds
+- wxLaunchDefaultBrowser() now supports wxBROWSER_NEW_WINDOW flag.
+- Added wxStandardPaths::GetResourcesDir() and GetLocalizedResourcesDir()
+- Added wxStandardPaths::GetDocumentsDir() (Ken Thomases)
+- Added wxStringTokenizer::GetLastDelimiter(); improved documentation.
+- Fixed wxTextFile in Unicode build
+- Speed improvements to wxRegEx when matching is done in a loop such as
+ during a search and replace.
+- Fix regerror and regfree name conficts when built-in regex and system regex
+ are both used in the same program.
+- Basic authentication supported added to wxHTTP.
+- wxCondition::WaitTimeout() now returns correct value when timeout occurs.
+- Fixed occasional wxThread cleanup crash.
+- Bug in wxLogStream::DoLogString in Unicode builds fixed.
+- Added support for memo fields to wxODBC.
+- Fixed Unicode builds using SunPro compiler by defining__WCHAR_TYPE__.
+- wxFileName now also looks for TMPDIR on Unix.
+- Fixed build error in list.h with VC++ 2005.
+- Fixed wxODBC buffer overflow problem in Unicode builds.
+- Fixed wxSocketBase::InterruptWait on wxBase.
+- Important code cleanup (Paul Cornett).
+- Added support for wxLongLong in wx stream classes (Mark Junker).
+- wxSOCKET_REUSEADDR can be used with wxSocketClient.
+- Overloaded Connect() and SetLocal() methods for binding to local address/port.
+- Albanian translation added (Besnik Bleta)
+- Assert messages now show the function in which assert failed
+- wxApp::OnAssertFailure() should now be used instead the old wxApp::OnAssert()
+- Fixed several bugs in wxDateTime::ParseDate()
+- The WXK*PRIOR and WXK*NEXT constants are now aliases for WXK*PAGEUP
+ and WXK*PAGEDOWN. If you have switch statements that use both
+ constants from a set then you need to remove the PRIOR/NEXT
+ versions in order to eliminate compiler errors.
+- Fixed bug where wxDateTime::Now() would sometimes return an incorrect value
+ the first time it was called.
+- Added wxString::rbegin() and rend()
+- Added wxString::EndsWith()
+- wxSocket::_Read continues reading from socket after exhausting pushback buffer.
+ Previously, only the buffer would be returned, even if more data was requested.
+- Added wxPowerEvent (currently MSW-only)