From 0a962e9c53c013684ccf126340f18ea232bbc53e Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Wed, 20 Dec 2017 11:05:24 +0200 Subject: [PATCH] Preparing release 3.2.0 --- CHANGES.rst | 4 ++-- Makefile | 2 +- objgraph.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d4c95f9..146abdf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,13 +3,13 @@ Changes .. currentmodule:: objgraph -3.1.3 (unreleased) +3.2.0 (2017-12-20) ------------------ - New ``filter`` argument for :func:`typestats`, :func:`most_common_types`, :func:`show_most_common_types`, :func:`show_growth`. -- Show lambda function more human-readble with change to :func:`_short_repr` +- Show lambda functions in a more human-friendly way. 3.1.2 (2017-11-27) diff --git a/Makefile b/Makefile index 89bce19..36e083e 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ define release_recipe = @echo @echo "about now. Then sanity-check the images with" @echo - @echo " $(VCS_DIFF_IMAGES)" + @echo " make imgdiff" @echo @echo "then either revert or commit the new images and run" @echo diff --git a/objgraph.py b/objgraph.py index 92ed969..7827c76 100755 --- a/objgraph.py +++ b/objgraph.py @@ -54,7 +54,7 @@ __author__ = "Marius Gedminas (marius@gedmin.as)" __copyright__ = "Copyright (c) 2008-2017 Marius Gedminas and contributors" __license__ = "MIT" -__version__ = '3.1.3.dev0' +__version__ = '3.2.0' __date__ = "2017-10-30"