You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prepare v5.0.0 release (#36)
* Update CI to build with the latest version of the compiler
* Update the bower repository URL to match the URL in the registry
* Upgrade bower dependencies
* Update the changelog
remove a space leak in tailRecEff (#19)
tailRecEff was holding a reference to the result of f' a.
Normally, this wouldn't matter, but in this case we are about
to enter a loop that may last a long time, so it is better to let
the GC clean up the result of f' a before.