Note assert-related change in changelog

svn:r1465
This commit is contained in:
Nick Mathewson 2009-10-26 20:07:06 +00:00
parent 2e36dbe1a6
commit 7f10fac342

View File

@ -33,6 +33,7 @@ Changes in 2.0.3-alpha:
o Have the win32 select() backend label TCP-socket-connected events as EV_WRITE, not EV_READ. This should bring it in line with the other backends, and improve portability. Patch from Christopher Davis.
o Stop using enums as arguments or return values when what we mean is a bitfield of enum values. C++ doesn't believe that you can OR two enum values together and get another enum, and C++ takes its typing seriously. Patch from Christopher Davis.
o Add an API to replace all fatal calls to exit() with a user-provided panic function.
o Replace all assert() calls with a variant that is aware of the user-provided logging and panic functions.
Changes in 2.0.2-alpha: