Skip to content

Commit

Permalink
Bumped version to 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Feb 9, 2021
1 parent 3ed727b commit 07f84d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
},
"conflict": {
"ext-maxminddb": "<1.9.0,>=2.0.0"
"ext-maxminddb": "<1.10.0,>=2.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
Expand Down
2 changes: 1 addition & 1 deletion ext/php_maxminddb.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#ifndef PHP_MAXMINDDB_H
#define PHP_MAXMINDDB_H 1
#define PHP_MAXMINDDB_VERSION "1.9.0"
#define PHP_MAXMINDDB_VERSION "1.10.0"
#define PHP_MAXMINDDB_EXTNAME "maxminddb"

extern zend_module_entry maxminddb_module_entry;
Expand Down
13 changes: 8 additions & 5 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,21 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2021-01-07</date>
<date>2021-02-09</date>
<version>
<release>1.9.0</release>
<api>1.9.0</api>
<release>1.10.0</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://github.com/maxmind/MaxMind-DB-Reader-php/blob/main/LICENSE">Apache License 2.0</license>
<notes>* The `maxminddb` extension is now buildable on Windows. Pull request
by Jan Ehrhardt. GitHub #115.</notes>
<notes>* When using the pure PHP reader, unsigned integers up to PHP_MAX_INT
will now be integers in PHP rather than strings. Previously integers
greater than 2^24 on 32-bit platforms and 2^56 on 64-bit platforms
would be strings due to the use of `gmp` or `bcmath` to decode them.
Reported by Alejandro Celaya. GitHub #119.</notes>
<contents>
<dir name="/">
<file role="doc" name="LICENSE"/>
Expand Down

0 comments on commit 07f84d9

Please sign in to comment.