Skip to content

Commit be68345

Browse files
Version Bump v3.10.10: better error handling
1 parent db6d34e commit be68345

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ 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+
[2019-12-11] Version 3.10.0
7+
---------------------------
8+
9+
**Library - Fix**
10+
- [PR #99](https://github.com/sendgrid/php-http-client/pull/99): Throw InvalidRequest exception on invalid CURL request. Thanks to [@alextech](https://github.com/alextech)!
11+
12+
**Library - Docs**
13+
- [PR #102](https://github.com/sendgrid/php-http-client/pull/102): Create a Use Cases Directory. Thanks to [@ProZsolt](https://github.com/ProZsolt)!
14+
- [PR #106](https://github.com/sendgrid/php-http-client/pull/106): Only mention the lowest required PHP version in README. Thanks to [@svenluijten](https://github.com/svenluijten)!
15+
616
## [3.9.6] - 2018-04-10
717
### Added
818
- PR [#98](https://github.com/sendgrid/php-http-client/pull/98). Updated documention of `Client.php` using PHPDoc.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2012-2018 SendGrid, Inc.
3+
Copyright (c) 2012-2019 Twilio SendGrid, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add php-http-client to your `composer.json` file. If you are not using [Composer
3939
```json
4040
{
4141
"require": {
42-
"sendgrid/php-http-client": "~3.9.6"
42+
"sendgrid/php-http-client": "~3.10.0"
4343
}
4444
}
4545
```

composer.json

Lines changed: 2 additions & 2 deletions
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.9.6",
5+
"version": "3.10.0",
66
"homepage": "http://github.com/sendgrid/php-http-client",
77
"keywords": ["SendGrid", "HTTP", "REST", "API", "Fluent"],
88
"license": "MIT",
@@ -13,7 +13,7 @@
1313
},
1414
{
1515
"name": "Elmer Thomas",
16-
"email": "elmer@thinkingserious.com"
16+
"email": "ethomas@twilio.com"
1717
}
1818
],
1919
"require": {

test/unit/LicenceYearTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function testConstructor()
1313

1414
$year = date('Y');
1515

16-
$expected = "Copyright (c) 2012-{$year} SendGrid, Inc.";
16+
$expected = "Copyright (c) 2012-{$year} Twilio SendGrid, Inc.";
1717

1818
$this->assertEquals($expected, $copyright);
1919
}

0 commit comments

Comments
 (0)