diff --git a/README.md b/README.md index d6a6550..9036037 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Check out single-file [hello world](https://gist.github.com/leocavalcante/9e61ca ## Installing graphql-php ``` $> curl -sS https://getcomposer.org/installer | php -$> php composer.phar require webonyx/graphql-php="^0.8" +$> php composer.phar require webonyx/graphql-php="^0.9" ``` If you are upgrading, see [upgrade instructions](UPGRADE.md) diff --git a/docs/getting-started.md b/docs/getting-started.md index fef66d5..8459942 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -9,13 +9,13 @@ add `composer.json` file to your project root folder with following contents: ``` { "require": { - "webonyx/graphql-php": "^0.8" + "webonyx/graphql-php": "^0.9" } } ``` and run `composer install`. -If you already have composer.json file - simply run: `composer require webonyx/graphql-php="^0.8"` +If you already have composer.json file - simply run: `composer require webonyx/graphql-php="^0.9"` # Upgrading We try to keep library releases backwards compatible. But when breaking changes are inevitable diff --git a/docs/index.md b/docs/index.md index 1c002bc..c8ed25f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -41,7 +41,7 @@ existing PHP frameworks, add support for Relay, etc. ## Current Status First version of this library (v0.1) was released on August 10th 2015. -Current version (v0.8) supports all features described by GraphQL specification +Current version (v0.9) supports all features described by GraphQL specification (including April 2016 add-ons) as well as some experimental features like Schema Language parser.