From 96a7c69eddf7acdf6c1b509409badbad23499398 Mon Sep 17 00:00:00 2001 From: CismonX Date: Mon, 30 Mar 2020 12:43:03 +0800 Subject: [PATCH] Add codecov.yml. Bumping version. --- codecov.yml | 2 ++ src/php_collections.h | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000..a34df24 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,2 @@ +ignore: + - "src/collections.c" diff --git a/src/php_collections.h b/src/php_collections.h index 6f1adfc..846cc50 100644 --- a/src/php_collections.h +++ b/src/php_collections.h @@ -16,7 +16,7 @@ extern zend_module_entry collections_module_entry; #define phpext_collections_ptr &collections_module_entry -#define PHP_COLLECTIONS_VERSION "0.1.1" +#define PHP_COLLECTIONS_VERSION "0.1.2" #ifdef PHP_WIN32 #define PHP_COLLECTIONS_API __declspec(dllexport) @@ -28,6 +28,8 @@ extern zend_module_entry collections_module_entry; #if PHP_VERSION_ID < 70100 #error "This extension requires PHP 7.1 and above." +#elif PHP_VERSION_ID >= 80000 +#error "This extension does not yet support PHP 8.0 (which is under development)." #endif #if PHP_VERSION_ID >= 70400