Prepare for v0.6.0
This commit is contained in:
parent
8bd00943f4
commit
24c856cbfa
|
@ -1,6 +1,14 @@
|
||||||
CHANGELOG
|
CHANGELOG
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.6.0 (2014-02-19)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* First full release.
|
||||||
|
* This API is now licensed under the Apache License, Version 2.0.
|
||||||
|
* Model and record classes now implement `JsonSerializable`.
|
||||||
|
* `isset` now works with model and record classes.
|
||||||
|
|
||||||
0.5.0 (2013-10-21)
|
0.5.0 (2013-10-21)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
13
README.md
13
README.md
|
@ -1,13 +1,5 @@
|
||||||
# GeoIP2 PHP API #
|
# GeoIP2 PHP API #
|
||||||
|
|
||||||
## Beta Note ##
|
|
||||||
|
|
||||||
This is a beta release. The API may change before the first production
|
|
||||||
release, which will be numbered 2.0.0.
|
|
||||||
|
|
||||||
You may find information on the GeoIP2 beta release process on [our
|
|
||||||
website](http://www.maxmind.com/en/geoip2_beta).
|
|
||||||
|
|
||||||
## Description ##
|
## Description ##
|
||||||
|
|
||||||
This package provides an API for the GeoIP2 [web services]
|
This package provides an API for the GeoIP2 [web services]
|
||||||
|
@ -25,7 +17,7 @@ To do this, add `geoip2/geoip2` to your `composer.json` file.
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"require": {
|
"require": {
|
||||||
"geoip2/geoip2": "0.5.*"
|
"geoip2/geoip2": "0.6.*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -228,7 +220,8 @@ to the client API, please see
|
||||||
This code requires PHP 5.3 or greater. Older versions of PHP are not
|
This code requires PHP 5.3 or greater. Older versions of PHP are not
|
||||||
supported.
|
supported.
|
||||||
|
|
||||||
This library also relies on the [Guzzle HTTP client](http://guzzlephp.org/).
|
This library also relies on the [Guzzle HTTP client](http://guzzlephp.org/)
|
||||||
|
and the [MaxMind DB Reader](https://github.com/maxmind/MaxMind-DB-Reader-php).
|
||||||
|
|
||||||
## Contributing ##
|
## Contributing ##
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"guzzle/guzzle": "3.*",
|
"guzzle/guzzle": "3.*",
|
||||||
"maxmind-db/reader": "0.2.*",
|
"maxmind-db/reader": "0.3.*",
|
||||||
"php": ">=5.3.1"
|
"php": ">=5.3.1"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user