From 2092d39982ff175a1c186987ab0041e4f980faa1 Mon Sep 17 00:00:00 2001 From: "Morten V. Pedersen" Date: Wed, 31 Jul 2024 15:19:04 +0200 Subject: [PATCH] Preparing to create tag 2.0.0 --- NEWS.rst | 4 ++++ setup.py | 2 +- wscript | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index b97dd05..734339d 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -6,6 +6,10 @@ of every change, see the Git log. Latest ------ +* tbd + +2.0.0 +----- * Major: Removed the default diffs on mismatch. The user can provide those themselves in the mismatch callback function. * Minor: Reorgnaized the internal structure of the data recorder to make it diff --git a/setup.py b/setup.py index 9258d0d..d2ceddb 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ with io.open(os.path.join(cwd, "README.rst"), encoding="utf-8") as fd: long_description = fd.read() -VERSION = "1.7.0" +VERSION = "2.0.0" setup( name="pytest-datarecorder", diff --git a/wscript b/wscript index fca73e4..3129755 100644 --- a/wscript +++ b/wscript @@ -15,7 +15,7 @@ import waflib top = "." -VERSION = "1.7.0" +VERSION = "2.0.0" class UploadContext(BuildContext):