Skip to content

Commit 7826b00

Browse files
authored
Merge pull request #166 from maxmind/greg/release
Prepare for 1.11.1
2 parents 1aab757 + 1e66f73 commit 7826b00

5 files changed

Lines changed: 16 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
CHANGELOG
22
=========
33

4+
1.11.1 (2023-12-01)
5+
-------------------
6+
7+
* Resolve warnings when compiling the C extension.
8+
* Fix various type issues detected by PHPStan level. Pull request by
9+
LauraTaylorUK. GitHub #160.
10+
411
1.11.0 (2021-10-18)
512
-------------------
613

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.11.0,>=2.0.0"
24+
"ext-maxminddb": "<1.11.1,>=2.0.0"
2525
},
2626
"require-dev": {
2727
"friendsofphp/php-cs-fixer": "3.*",

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.11.0"
18+
#define PHP_MAXMINDDB_VERSION "1.11.1"
1919
#define PHP_MAXMINDDB_EXTNAME "maxminddb"
2020

2121
extern zend_module_entry maxminddb_module_entry;

package.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,19 @@
1414
<email>goschwald@maxmind.com</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2021-10-18</date>
17+
<date>2023-12-01</date>
1818
<version>
19-
<release>1.11.0</release>
20-
<api>1.11.0</api>
19+
<release>1.11.1</release>
20+
<api>1.11.1</api>
2121
</version>
2222
<stability>
2323
<release>stable</release>
2424
<api>stable</api>
2525
</stability>
2626
<license uri="https://github.com/maxmind/MaxMind-DB-Reader-php/blob/main/LICENSE">Apache License 2.0</license>
27-
<notes>* Replace runtime define of a constant to facilitate opcache preloading.
28-
Reported by vedadkajtaz. GitHub #134.
29-
* Resolve minor issue found by the Clang static analyzer in the C
30-
extension.</notes>
27+
<notes>* Resolve warnings when compiling the C extension.
28+
* Fix various type issues detected by PHPStan level. Pull request by
29+
LauraTaylorUK. GitHub #160.</notes>
3130
<contents>
3231
<dir name="/">
3332
<file role="doc" name="LICENSE"/>

tests/MaxMind/Db/Test/ReaderTest.php

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

33
declare(strict_types=1);
44

5-
namespace MaxMind\Db\Test\Reader;
5+
namespace MaxMind\Db\Test;
66

77
use MaxMind\Db\Reader;
88
use MaxMind\Db\Reader\InvalidDatabaseException;

0 commit comments

Comments
 (0)