Skip to content

Commit

Permalink
Prepare release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
toin0u committed Jul 19, 2013
1 parent c0afed7 commit 21516d6
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 41 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
CHANGELOG
=========

0.2.5 (xxxx-xx-xx)
0.3.0 (2013-07-19)
------------------

n/a
* Updated: loep (The League of Extraordinary Packages) is now owner
* Updated: use Geocoder 2.0.0


0.2.4 (2013-05-03)
Expand Down
87 changes: 49 additions & 38 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,57 @@
{
"name": "league/geotools",
"type": "library",
"description": "Geo-related tools PHP 5.3 library",
"keywords": ["geotools", "geometry", "geocoder", "geocoding", "geoip", "bounds", "distance", "batch", "async"],
"homepage": "http://geotools-php.org/",
"license": "MIT",
"authors": [
{
"name": "Antoine Corcy",
"email": "contact@sbin.dk",
"homepage": "http://sbin.dk",
"role": "Developer"
}
],
"support": {
"email": "support@geotools-php.org",
"issues": "https://github.com/php-loep/Geotools/issues",
"source": "https://github.com/php-loep/Geotools"
"name" : "league/geotools",
"type" : "library",
"description" : "Geo-related tools PHP 5.3 library",
"keywords" : ["geotools", "geometry", "geocoder", "geocoding", "geoip", "bounds", "distance", "batch", "async"],
"homepage" : "http://geotools-php.org/",
"license" : "MIT",

"authors" : [{
"name" : "Antoine Corcy",
"email" : "contact@sbin.dk",
"homepage" : "http://sbin.dk",
"role" : "Developer"
}],

"support" : {
"email" : "support@geotools-php.org",
"issues" : "https://github.com/php-loep/Geotools/issues",
"source" : "https://github.com/php-loep/Geotools"
},

"replace" : {
"toin0u/geotools" : "self.version"
},
"require": {
"php": ">=5.3.3",
"willdurand/geocoder": "~2.0",
"react/async": "~1.0",
"symfony/console": "~2.3",
"symfony/serializer": "~2.3"

"require" : {
"php" : ">=5.3.3",
"willdurand/geocoder" : "~2.0",
"react/async" : "~1.0",
"symfony/console" : "~2.3",
"symfony/serializer" : "~2.3"
},
"require-dev": {
"willdurand/geocoder": "@dev",
"kriswallsmith/buzz": "~0.10",
"guzzle/guzzle": "~3.7",
"zendframework/zendframework": "~2.2",
"predis/predis": "~0.8",
"ext-curl" : "*",
"satooshi/php-coveralls": "~0.6"

"require-dev" : {
"ext-curl" : "*",
"willdurand/geocoder" : "@dev",
"kriswallsmith/buzz" : "~0.10",
"guzzle/guzzle" : "~3.7",
"zendframework/zendframework" : "~2.2",
"predis/predis" : "~0.8",
"satooshi/php-coveralls" : "~0.6"
},
"autoload": {
"psr-0": { "League\\Geotools": "src/" }

"autoload" : {
"psr-0" : {
"League\\Geotools": "src/"
}
},
"bin": ["geotools"],
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"

"bin" : ["geotools"],

"extra" : {
"branch-alias" : {
"dev-master" : "0.3-dev"
}
}
}
2 changes: 1 addition & 1 deletion src/League/Geotools/Geotools.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Geotools extends AbstractGeotools implements GeotoolsInterface
* Version.
* @see http://semver.org/
*/
const VERSION = '0.2.5-dev';
const VERSION = '0.3.0';


/**
Expand Down

0 comments on commit 21516d6

Please sign in to comment.