Skip to content

Commit fca5ed6

Browse files
committed
Prepare for 0.3.0
1 parent 7591bc8 commit fca5ed6

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

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+
0.3.0 (2014-02-19)
5+
------------------
6+
7+
* This API is now licensed under the Apache License, Version 2.0.
8+
* The code for the C extension was cleaned up, fixing several potential
9+
issues.
10+
411
0.2.0 (2013-10-21)
512
------------------
613

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
# MaxMind DB Reader PHP API #
22

3-
## Beta Note ##
4-
5-
This is a beta release. The API may change before the first production
6-
release.
7-
83
## Description ##
94

105
This is the pure PHP API for reading MaxMind DB files. MaxMind DB is a binary
@@ -20,7 +15,7 @@ To do this, add ```maxmind-db/reader``` to your ```composer.json``` file.
2015
```json
2116
{
2217
"require": {
23-
"maxmind-db/reader": "0.2.*"
18+
"maxmind-db/reader": "0.3.*"
2419
}
2520
}
2621
```
@@ -64,7 +59,8 @@ $databaseFile = 'GeoIP2-City.mmdb';
6459
$reader = new Reader($databaseFile);
6560

6661
print_r($reader->get($ipAddress));
67-
//...
62+
63+
$reader->close()
6864
```
6965

7066
## Optional PHP C Extension ##
@@ -110,7 +106,7 @@ client API, please see [our support page](http://www.maxmind.com/en/support).
110106

111107
## Requirements ##
112108

113-
This library requires PHP 5.3 or greater (built with BC Math enabled). Older
109+
This library requires PHP 5.3 or greater (with BC Math enabled). Older
114110
versions of PHP are not supported.
115111

116112
## Contributing ##

0 commit comments

Comments
 (0)