Skip to content

Commit

Permalink
Getting ready for release 2.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
robbmcleod committed Aug 10, 2018
1 parent efd333d commit 5c96a8a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
18 changes: 12 additions & 6 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
==========================
Announcing Numexpr 2.6.6
Announcing Numexpr 2.6.7
==========================

Hi everyone,

This is a bug-fix release. Thanks to Mark Dickinson for a fix to the thread
barrier that occassionally suffered from spurious wakeups on MacOSX.
This is a bug-fix release. Thanks to Lehman Garrison for a fix that could
result in memory leak-like behavior.

Project documentation is available at:

http://numexpr.readthedocs.io/

Changes from 2.6.5 to 2.6.6
Changes from 2.6.6 to 2.6.7
---------------------------

- Thanks to Mark Dickinson for a fix to the thread barrier that occassionally
suffered from spurious wakeups on MacOSX.
- Thanks to Lehman Garrison for finding and fixing a bug that exhibited memory
leak-like behavior. The use in `numexpr.evaluate` of `sys._getframe` combined
with `.f_locals` from that frame object results an extra refcount on objects
in the frame that calls `numexpr.evaluate`, and not `evaluate`'s frame. So if
the calling frame remains in scope for a long time (such as a procedural
script where `numexpr` is called from the base frame) garbage collection would
never occur.
- Imports for the `numexpr.test` submodule were made lazy in the `numexpr` module.

What's Numexpr?
---------------
Expand Down
9 changes: 8 additions & 1 deletion RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
Changes from 2.6.6 to 2.6.7
---------------------------

- #XXX version-specific blurb XXX#
- Thanks to Lehman Garrison for finding and fixing a bug that exhibited memory
leak-like behavior. The use in `numexpr.evaluate` of `sys._getframe` combined
with `.f_locals` from that frame object results an extra refcount on objects
in the frame that calls `numexpr.evaluate`, and not `evaluate`'s frame. So if
the calling frame remains in scope for a long time (such as a procedural
script where `numexpr` is called from the base frame) garbage collection would
never occur.
- Imports for the `numexpr.test` submodule were made lazy in the `numexpr` module.

Changes from 2.6.5 to 2.6.6
---------------------------
Expand Down
2 changes: 1 addition & 1 deletion numexpr/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
# rights to use.
####################################################################

version = '2.6.7dev0'
version = '2.6.7'

0 comments on commit 5c96a8a

Please sign in to comment.