From 79b899e30f63cdc78acf83f57144385383aeb7ac Mon Sep 17 00:00:00 2001 From: Matt Bachmann Date: Fri, 9 Jul 2021 16:47:27 -0400 Subject: [PATCH] Version 6.1.1 --- CHANGELOG | 4 ++++ diff_cover/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 1d7799e5..70d486df 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +7/09/2021 v6.1.1 + +* Undoes a change making a implemented method abstract. Turned out existing plugins depended on this. + 7/08/2021 v6.1.0 * New flag `--include-untracked` to give people the option to run against files that are not being tracked by git currently Thanks @kasium diff --git a/diff_cover/__init__.py b/diff_cover/__init__.py index 7d07d59d..8db3f16f 100644 --- a/diff_cover/__init__.py +++ b/diff_cover/__init__.py @@ -1,5 +1,5 @@ # This file is imported in setup.py and cannot use any external dependencies -VERSION = "6.1.0" +VERSION = "6.1.1" DESCRIPTION = "Automatically find diff lines that need test coverage." QUALITY_DESCRIPTION = "Automatically find diff lines with quality violations."