From cb9c024699e7c4e7c2cd74d371e8bd01000b01f4 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Thu, 1 May 2014 07:20:30 -0700 Subject: [PATCH] Prepare for 0.6.1 --- CHANGELOG.md | 9 +++++++++ README.md | 4 +++- composer.json | 8 ++++---- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a48cba..d4a0f85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ CHANGELOG ========= +0.6.1 (2014-05-01) +------------------ + +* This API now officially supports HHVM. +* The `maxmind-db/reader` dependency was updated to a version that does not + require BC Math. +* The Composer compatibility autoload rules are now targeted more narrowly. +* A `box.json` file is included to build a Phar package. + 0.6.0 (2014-02-19) ------------------ diff --git a/README.md b/README.md index 2e977bb..1e8c495 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,8 @@ to the client API, please see This code requires PHP 5.3 or greater. Older versions of PHP are not supported. +This library works and is tested with HHVM. + 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). @@ -248,7 +250,7 @@ The GeoIP2 PHP API uses [Semantic Versioning](http://semver.org/). ## Copyright and License ## -This software is Copyright (c) 2013 by MaxMind, Inc. +This software is Copyright (c) 2014 by MaxMind, Inc. This is free software, licensed under the Apache License, Version 2.0. diff --git a/composer.json b/composer.json index 7720647..a414985 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "geoip2/geoip2", "description": "MaxMind GeoIP2 PHP API", - "keywords": [ "geoip", "geolocation", "maxmind" ], + "keywords": ["geoip", "geoip2", "geolocation", "ip", "maxmind"], "homepage": "https://github.com/maxmind/GeoIP2-php", "type": "library", "license": "Apache-2.0", @@ -14,7 +14,7 @@ ], "require": { "guzzle/guzzle": "3.*", - "maxmind-db/reader": "0.3.*", + "maxmind-db/reader": "~0.3.1", "php": ">=5.3.1" }, "require-dev": { @@ -24,7 +24,7 @@ "autoload": { "psr-0": { "GeoIp2": "src/", - "JsonSerializable" : "compat/" - } + "JsonSerializable": "compat/" + } } }