diff --git a/ANNOUNCE b/ANNOUNCE index e0570db..a3fc6ca 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,4 +1,4 @@ -I am happy to announce Guppy 3 3.0.7 +I am happy to announce Guppy 3 3.0.8 Guppy 3 is a library and programming environment for Python, currently providing in particular the Heapy subsystem, which supports @@ -12,10 +12,9 @@ Guppy 3 is a fork of Guppy-PE, created by Sverker Nilsson for Python 2. The main news in this release: -o Disabled malloc hooks because of thread safety issues -o Optimizations to the dictof classifier by using GC objects -o No more stack overflows during heap traversal -o Tab completion with rlcompleter on a UniSet is no longer so expensive +o Reuse IdentitySet partition on repr and selection +o Use temporary root for traversal in initialization +o Bug fixes License: MIT diff --git a/ChangeLog b/ChangeLog index 2fe932e..4bfb9c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,36 @@ + Version 3.0.8 + +2019-10-07 YiFei Zhu + + * Nothing changed, just releasing 3.0.8 + +2019-10-03 YiFei Zhu + + * RefPat.py: Add missing comma in string list [Ehsan Kia] + +2019-10-02 YiFei Zhu + + * Don't cache Interface attributes because of invalidation is too painful, + and it barely makes a difference. + +2019-09-26 YiFei Zhu + + * Unreachable code cleanup + * Use a temporary root object for traversal in initialization, to reduce + its performance penalty + +2019-09-25 YiFei Zhu + + * Fix get_partition memoization + * Create FastPartition for reusing the already-computed partition + information after selecting from a single partition. + * Fix segfault in Horizon deallocation + +2019-09-22 YiFei Zhu + + * Unreachable code cleanup + * Python 3 fixes RE.py and RE_Rect.py + Version 3.0.7 2019-09-21 YiFei Zhu diff --git a/setup.py b/setup.py index 9bf7d70..e7ef4a2 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def doit(): long_description = f.read() setup(name="guppy3", - version="3.0.7", + version="3.0.8", description="Guppy 3 -- Guppy-PE ported to Python 3", long_description=long_description, long_description_content_type='text/markdown',