Skip to content

Commit b3a09c3

Browse files
Version Bump v3.6.0: Pull sendgrid#16 Pass the curlOptions to the client in buildClient
1 parent 27509be commit b3a09c3

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
vendor/
44
*.old
55
.idea/
6+
*.phar

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [3.6.0] - 2017-03-01
7+
### Added
8+
- Pull request #16: [Pass the curlOptions to the client in buildClient](https://github.com/sendgrid/php-http-client/pull/16)
9+
- Thanks to [Baptiste Clavié](https://github.com/Taluu) for the pull request!
10+
611
## [3.5.1] - 2016-11-17
712
### Fixed
813
- Pull request #13, fixed issue #12: [Change from to php union operator to combine curl options](https://github.com/sendgrid/php-http-client/pull/13)

Diff for: CONTRIBUTING.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ All test files are in the [`/test/unit`](https://github.com/sendgrid/php-http-cl
122122
For the purposes of contributing to this repo, please update the [`ClientTest.php`](https://github.com/sendgrid/php-http-client/blob/master/test/unit/ClientTest.php) file with unit tests as you modify the code.
123123

124124
```bash
125-
phpunit --bootstrap test/unit/bootstrap.php --filter test* test/unit
125+
composer install
126+
cd test/unit
127+
../../vendor/bin/phpunit . --bootstrap bootstrap.php --filter test*
126128
```
127129

128130
<a name="style_guidelines_and_naming_conventions"></a>

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add php-http-client to your `composer.json` file. If you are not using [Composer
2121
```json
2222
{
2323
"require": {
24-
"sendgrid/php-http-client": "3.5.1"
24+
"sendgrid/php-http-client": "~3.6"
2525
}
2626
}
2727
```

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sendgrid/php-http-client",
33
"description": "HTTP REST client, simplified for PHP",
44
"type": "library",
5-
"version": "3.5.1",
5+
"version": "3.6.0",
66
"require-dev": {
77
"phpunit/phpunit": "~4.4",
88
"squizlabs/php_codesniffer": "~2.0"

0 commit comments

Comments
 (0)