From b566d429ac9aec10594b0935be8ff38302f8d5c8 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Thu, 1 Oct 2020 10:30:21 -0700 Subject: [PATCH] Bumped version to 1.8.0 --- composer.json | 2 +- ext/php_maxminddb.h | 2 +- package.xml | 16 +++------------- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/composer.json b/composer.json index bbb43b8..5e7ff98 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups" }, "conflict": { - "ext-maxminddb": "<1.7.0,>=2.0.0" + "ext-maxminddb": "<1.8.0,>=2.0.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "2.*", diff --git a/ext/php_maxminddb.h b/ext/php_maxminddb.h index a6b8e48..d484ac6 100644 --- a/ext/php_maxminddb.h +++ b/ext/php_maxminddb.h @@ -15,7 +15,7 @@ #ifndef PHP_MAXMINDDB_H #define PHP_MAXMINDDB_H 1 -#define PHP_MAXMINDDB_VERSION "1.7.0" +#define PHP_MAXMINDDB_VERSION "1.8.0" #define PHP_MAXMINDDB_EXTNAME "maxminddb" extern zend_module_entry maxminddb_module_entry; diff --git a/package.xml b/package.xml index 7e67a77..3ab0953 100644 --- a/package.xml +++ b/package.xml @@ -14,9 +14,9 @@ goschwald@maxmind.com yes - 2020-08-07 + 2020-10-01 - 1.7.0 + 1.8.0 1.7.0 @@ -24,17 +24,7 @@ stable Apache License 2.0 - * IMPORTANT: PHP 7.2 or greater is now required. -* The extension no longer depends on the pure PHP classes in - `maxmind-db/reader`. You can use it independently. -* Type hints have been added to both the pure PHP implementation - and the extension. -* The `metadata` method on the reader now returns a new copy of the - metadata object rather than the actual object used by the reader. -* Work around PHP `is_readable()` bug. Reported by Ben Roberts. GitHub - #92. -* This is the first release of the extension as a PECL package. - GitHub #34. + * Fixes for PHP 8.0. Pull Request by Remi Collet. GitHub #108.