Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Prepare 5.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yguedidi committed Dec 11, 2018
1 parent a20d03b commit 2d82506
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Starting with version 5, the Facebook PHP SDK follows [SemVer](http://semver.org

Version 5 of the Facebook PHP SDK is a complete refactor of version 4. It comes loaded with lots of new features and a friendlier API.

- 5.7.0 (2018-00-00)
- 5.7.1 (2018-XX-XX)
- 5.7.0 (2018-12-12)
- Add `joined` to list of fields to be cast to `\DateTime` (#950)
- Add `GraphPage::getFanCount()` to get the number of people who like the page (#815)
- Fixed HTTP/2 support (#1079)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The code of conduct is described in [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md)

- **Add tests!** - Your patch won't be accepted if it doesn't have tests.

- **Document any change in behaviour** - Make sure the README and the [documentation](https://github.com/facebook/facebook-php-sdk-v4/tree/master/docs) are kept up-to-date.
- **Document any change in behaviour** - Make sure the README and the [documentation](https://github.com/facebook/php-graph-sdk/tree/master/docs) are kept up-to-date.

- **Consider our release cycle** - As of version 5.0.0, we try to follow [SemVer](http://semver.org/). Randomly breaking public APIs is not an option.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Facebook SDK for PHP (v5)

[![Build Status](https://img.shields.io/travis/facebook/php-graph-sdk/5.x.svg)](https://travis-ci.org/facebook/php-graph-sdk)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/facebook/facebook-php-sdk-v4/badges/quality-score.png?b=5.x)](https://scrutinizer-ci.com/g/facebook/facebook-php-sdk-v4/?branch=5.x)
[![Latest Stable Version](http://img.shields.io/badge/Latest%20Stable-5.6.3-blue.svg)](https://packagist.org/packages/facebook/graph-sdk)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/facebook/php-graph-sdk/badges/quality-score.png?b=5.x)](https://scrutinizer-ci.com/g/facebook/php-graph-sdk/?branch=5.x)
[![Latest Stable Version](http://img.shields.io/badge/Latest%20Stable-5.7.0-blue.svg)](https://packagist.org/packages/facebook/graph-sdk)

This repository contains the open source PHP SDK that allows you to access the Facebook Platform from your PHP app.

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ require_once __DIR__ . '/vendor/autoload.php';

First, download the source code and unzip it wherever you like in your project.

[Download the SDK for PHP v5](https://github.com/facebook/php-graph-sdk/archive/5.4.zip)
[Download the SDK for PHP v5](https://github.com/facebook/php-graph-sdk/archive/5.7.zip)

Then include the autoloader provided in the SDK at the top of your script.

Expand Down
2 changes: 1 addition & 1 deletion src/Facebook/Facebook.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Facebook
/**
* @const string Version number of the Facebook PHP SDK.
*/
const VERSION = '5.6.3';
const VERSION = '5.7.0';

/**
* @const string Default Graph API version for requests.
Expand Down

0 comments on commit 2d82506

Please sign in to comment.