Skip to content

Commit 2d82506

Browse files
committed
Prepare 5.7.0 release
1 parent a20d03b commit 2d82506

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Starting with version 5, the Facebook PHP SDK follows [SemVer](http://semver.org
66

77
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.
88

9-
- 5.7.0 (2018-00-00)
9+
- 5.7.1 (2018-XX-XX)
10+
- 5.7.0 (2018-12-12)
1011
- Add `joined` to list of fields to be cast to `\DateTime` (#950)
1112
- Add `GraphPage::getFanCount()` to get the number of people who like the page (#815)
1213
- Fixed HTTP/2 support (#1079)

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The code of conduct is described in [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md)
2323

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

26-
- **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.
26+
- **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.
2727

2828
- **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.
2929

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Facebook SDK for PHP (v5)
22

33
[![Build Status](https://img.shields.io/travis/facebook/php-graph-sdk/5.x.svg)](https://travis-ci.org/facebook/php-graph-sdk)
4-
[![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)
5-
[![Latest Stable Version](http://img.shields.io/badge/Latest%20Stable-5.6.3-blue.svg)](https://packagist.org/packages/facebook/graph-sdk)
4+
[![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)
5+
[![Latest Stable Version](http://img.shields.io/badge/Latest%20Stable-5.7.0-blue.svg)](https://packagist.org/packages/facebook/graph-sdk)
66

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

docs/getting_started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ require_once __DIR__ . '/vendor/autoload.php';
3939

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

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

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

src/Facebook/Facebook.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Facebook
5353
/**
5454
* @const string Version number of the Facebook PHP SDK.
5555
*/
56-
const VERSION = '5.6.3';
56+
const VERSION = '5.7.0';
5757

5858
/**
5959
* @const string Default Graph API version for requests.

0 commit comments

Comments
 (0)