From 61e810847fb47fe7d10b4db14cd746b6d3b25954 Mon Sep 17 00:00:00 2001 From: Martin Levy Date: Fri, 9 Feb 2024 11:30:55 -0800 Subject: [PATCH] 2.18.0 --- CloudFlare/__init__.py | 2 +- Makefile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CloudFlare/__init__.py b/CloudFlare/__init__.py index e445a8f..eb5cf9c 100644 --- a/CloudFlare/__init__.py +++ b/CloudFlare/__init__.py @@ -1,6 +1,6 @@ """ Cloudflare v4 API""" -__version__ = '2.17.0' +__version__ = '2.18.0' from .cloudflare import CloudFlare diff --git a/Makefile b/Makefile index 08fd378..0b73ae6 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,7 @@ install: build test: all @if pip show pytest-cov > /dev/null; \ then \ + if [ ! -s .coverage ] ; then touch -t 202001011200 .coverage ; fi ; \ if [ `find CloudFlare CloudFlare/tests cli4 examples setup.py setup.cfg -type f -depth 1 -name '*.py' -newer .coverage | wc -l` != 0 ]; \ then \ echo $(PYTEST) --cov=CloudFlare ; \