Skip to content

Commit 9e499fb

Browse files
committed
3.3.0 release
1 parent 6ef334f commit 9e499fb

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
### 3.3.0
4+
5+
- Add support for IPinfo Core API
6+
- Add support for IPinfo Plus API
7+
38
### 3.2.0
49

510
- Fixes PHP8.0 support, add symfony/cache ^7.0 support, phpunit 11,12 support

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444
"extra": {
4545
"branch-alias": {
46-
"dev-master": "3.2.0-dev"
46+
"dev-master": "3.3.0-dev"
4747
}
4848
},
4949
"config": {

src/IPinfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public function getMapUrl($ips)
289289
private function buildHeaders()
290290
{
291291
$headers = [
292-
'user-agent' => 'IPinfoClient/PHP/3.2.0',
292+
'user-agent' => 'IPinfoClient/PHP/3.3.0',
293293
'accept' => 'application/json',
294294
'content-type' => 'application/json',
295295
];

src/IPinfoCore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public function getRequestDetails(string $ip_address)
187187
private function buildHeaders()
188188
{
189189
$headers = [
190-
"user-agent" => "IPinfoClient/PHP/3.2.0",
190+
"user-agent" => "IPinfoClient/PHP/3.3.0",
191191
"accept" => "application/json",
192192
"content-type" => "application/json",
193193
];

src/IPinfoLite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public function getRequestDetails(string $ip_address)
189189
private function buildHeaders()
190190
{
191191
$headers = [
192-
"user-agent" => "IPinfoClient/PHP/3.2.0",
192+
"user-agent" => "IPinfoClient/PHP/3.3.0",
193193
"accept" => "application/json",
194194
"content-type" => "application/json",
195195
];

src/IPinfoPlus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function getRequestDetails(string $ip_address)
193193
private function buildHeaders()
194194
{
195195
$headers = [
196-
"user-agent" => "IPinfoClient/PHP/3.2.0",
196+
"user-agent" => "IPinfoClient/PHP/3.3.0",
197197
"accept" => "application/json",
198198
"content-type" => "application/json",
199199
];

0 commit comments

Comments
 (0)