Commits (2)
diffoscope (142) UNRELEASED; urgency=medium
diffoscope (142) unstable; urgency=medium
* WIP (generated upon release).
[ Chris Lamb ]
* Render multiline difference comments in a way to show indentation.
(Closes: reproducible-builds/diffoscope#101)
* Correct parsing of "./setup.py test --pytest-args ...".
* Capitalise "Ordering differences only" in text comparison comments.
* Don't include the JSON similarity percentage if it is 0.0%.
[ Ben Hutchings ]
* Document how --exclude arguments are matched against filenames.
[ Vagrant Cascadian ]
* Add external tool reference for h5dump on Guix.
-- Chris Lamb <lamby@debian.org> Wed, 15 Apr 2020 19:36:15 +0100
-- Chris Lamb <lamby@debian.org> Wed, 22 Apr 2020 16:35:14 +0100
diffoscope (141) unstable; urgency=medium
......
......@@ -18,4 +18,4 @@
# You should have received a copy of the GNU General Public License
# along with diffoscope. If not, see <https://www.gnu.org/licenses/>.
VERSION = "141"
VERSION = "142"
......@@ -95,5 +95,5 @@ text_order2 = load_fixture('text_order2')
def test_ordering_differences(text_order1, text_order2):
difference = text_order1.compare(text_order2)
assert difference.comments == ['ordering differences only']
assert difference.comments == ['Ordering differences only']
assert difference.unified_diff == get_data('text_order_expected_diff')