v1.13.2
Bug fixes
-
GH-2119: Fix missing inline functions in enum prototypes.
Our prototype generation could miss function bodies for
inlinefunctions. -
GH-2074: Fix fiber abortion.
When aborting a fiber, we need to activate it once more, to then leave it for good by raising an
AbortException. Problem was that that exception ended up being caught by user code because it was derived fromstd::exception`. This change removes the base class so that the exception is guaranteed to go back to the managing fiber code, where we just ignore it.