From fc8cdb25b0a10f67efb699ea6861959358d70792 Mon Sep 17 00:00:00 2001 From: Sam Vilain Date: Wed, 23 Jul 2014 11:20:34 -0700 Subject: [PATCH] Release engineering for 0.4.7 PyPI release --- CHANGELOG.rst | 6 +++++- setup.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e739b56..e666021 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Normalize changelog and errata ============================== -0.4.x Series, 19th June - 18th July 2014 +0.4.x Series, 19th June - 23rd July 2014 ---------------------------------------- * added support for comparing filtered objects; ``__pk__()`` object method no longer honored. See ``tests/test_mfs_diff.py`` for @@ -23,6 +23,10 @@ Normalize changelog and errata are not actually None but all of the fields that have values are filtered by the DiffOptions compare_filter parameter. +* added Diffas property trait, so you can easily add + 'compare_as=lambda x: scrub(x)' for field-specific clean-ups specific + to comparison. + 0.3.0, 30th May 2014 -------------------- * enhancement to diff to allow custom, per-field normalization of diff --git a/setup.py b/setup.py index 65b21fa..559dc86 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,6 @@ packages=find_packages(), install_requires=('richenum>=1.0.0',), test_suite="run_tests", - version='0.4.6', + version='0.4.7', url="http://hearsaycorp.github.io/normalize", )