diff --git a/ANNOUNCE b/ANNOUNCE index 7c4a363..a3490e9 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,4 +1,4 @@ -I am happy to announce Guppy 3 3.0.4 +I am happy to announce Guppy 3 3.0.5 Guppy 3 is a library and programming environment for Python, currently providing in particular the Heapy subsystem, which supports @@ -12,11 +12,11 @@ Guppy 3 is a fork of Guppy-PE, created by Sverker Nilsson for Python 2. The main news in this release: -o A error message is now displayed pointing to guppy-pe if the package is - installed in Python 2, and a warning is now displayed if the package is - installed in non-CPython. -o Profile Browser is now able to load data dumps and how to perform a dump - is documented. +o Wheel binary compatibility fix for Python >= 3.7, < 3.7.4 +o Prefix thread states with interpreter number in RootState +o Made first heap call faster +o Use _PySys_GetSizeOf as default size getter +o Allow xt_hd_traverse to be KeyboardInterrupt-ed License: MIT diff --git a/ChangeLog b/ChangeLog index b5786eb..2d0ab17 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ + Version 3.0.5 + +2019-09-07 YiFei Zhu + + * Wheel binary compatibility fix for Python >= 3.7, < 3.7.4: + Use PyObject_GC_UnTrack instead of _PyObject_GC_UNTRACK + +2019-09-06 YiFei Zhu + + * xmemstats: Resolve availability of most information at run time + * Minor bug fixes + +2019-09-05 YiFei Zhu + + * Prefix thread states with interpreter number in RootState + * Minor bug fixes + +2019-09-04 YiFei Zhu + + * Make first heap call faster by making an IdentitySet of a single + object instead of the entire heap during initialization + * Use _PySys_GetSizeOf as default size getter + * Allow xt_hd_traverse to be KeyboardInterrupt-ed + * Minor bug fixes + Version 3.0.4 2019-09-01 YiFei Zhu diff --git a/setup.py b/setup.py index 4b9e31d..356b3f0 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def doit(): Compilation failure expected, but continuting anyways...''', file=sys.stderr) setup(name="guppy3", - version="3.0.4", + version="3.0.5", description="Guppy 3 -- Guppy-PE ported to Python 3", long_description=""" Guppy 3 is a library and programming environment for Python,