diff --git a/composer.json b/composer.json
index 70fd359..70a8690 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.9.0,>=2.0.0"
+ "ext-maxminddb": "<1.10.0,>=2.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
diff --git a/ext/php_maxminddb.h b/ext/php_maxminddb.h
index b5e3a0a..f6c4798 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.9.0"
+#define PHP_MAXMINDDB_VERSION "1.10.0"
#define PHP_MAXMINDDB_EXTNAME "maxminddb"
extern zend_module_entry maxminddb_module_entry;
diff --git a/package.xml b/package.xml
index 06e519d..766cd17 100644
--- a/package.xml
+++ b/package.xml
@@ -14,18 +14,21 @@
goschwald@maxmind.com
yes
- 2021-01-07
+ 2021-02-09
- 1.9.0
- 1.9.0
+ 1.10.0
+ 1.10.0
stable
stable
Apache License 2.0
- * The `maxminddb` extension is now buildable on Windows. Pull request
- by Jan Ehrhardt. GitHub #115.
+ * 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.