Skip to content

v1.13.2

Choose a tag to compare

@github-actions github-actions released this 16 Jul 14:19
· 452 commits to main since this release

Bug fixes

  • GH-2119: Fix missing inline functions in enum prototypes.

    Our prototype generation could miss function bodies for inline functions.

  • 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 from std::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.