Skip to content

Commit 942553d

Browse files
committed
Bumped version to 1.7.0
1 parent 1e230ef commit 942553d

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
2222
},
2323
"conflict": {
24-
"ext-maxminddb": "<1.6.0,>=2.0.0"
24+
"ext-maxminddb": "<1.7.0,>=2.0.0"
2525
},
2626
"require-dev": {
2727
"friendsofphp/php-cs-fixer": "2.*",

ext/php_maxminddb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
#ifndef PHP_MAXMINDDB_H
1717
#define PHP_MAXMINDDB_H 1
18-
#define PHP_MAXMINDDB_VERSION "1.6.0"
18+
#define PHP_MAXMINDDB_VERSION "1.7.0"
1919
#define PHP_MAXMINDDB_EXTNAME "maxminddb"
2020

2121
extern zend_module_entry maxminddb_module_entry;

package.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<email>[email protected]</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2020-08-06</date>
17+
<date>2020-08-07</date>
1818
<version>
1919
<release>1.7.0</release>
2020
<api>1.7.0</api>
@@ -24,9 +24,17 @@
2424
<api>stable</api>
2525
</stability>
2626
<license uri="https://github.com/maxmind/MaxMind-DB-Reader-php/blob/master/LICENSE">Apache License 2.0</license>
27-
<notes>
28-
First release of the maxminddb extension to PECL.
29-
</notes>
27+
<notes>* IMPORTANT: PHP 7.2 or greater is now required.
28+
* The extension no longer depends on the pure PHP classes in
29+
`maxmind-db/reader`. You can use it independently.
30+
* Type hints have been added to both the pure PHP implementation
31+
and the extension.
32+
* The `metadata` method on the reader now returns a new copy of the
33+
metadata object rather than the actual object used by the reader.
34+
* Work around PHP `is_readable()` bug. Reported by Ben Roberts. GitHub
35+
#92.
36+
* This is the first release of the extension as a PECL package.
37+
GitHub #34.</notes>
3038
<contents>
3139
<dir name="/">
3240
<file role="doc" name="LICENSE"/>

0 commit comments

Comments
 (0)